Blame view

C5/app/src/main/res/layout/license_layout.xml 1.44 KB
fac86401   孙向锦   初始化C5 Vote
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="vertical" >
  
      <TextView
          android:id="@+id/license_title"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:layout_marginBottom="10dp"
          android:layout_marginTop="5dp"
          android:text="@string/title_license"
          android:textSize="16sp" />
  
      <ScrollView
          android:layout_width="match_parent"
          android:layout_height="wrap_content" >
  
          <LinearLayout
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical" >
  
              <TextView
                  android:id="@+id/license_content"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center_horizontal"
                  android:layout_marginTop="5dp" />
  
              <Button
                  android:id="@+id/cancelBtn"
                  android:layout_width="160dp"
                  android:layout_height="wrap_content"
                  android:layout_gravity="center_horizontal"
                  android:text="@string/know" />
          </LinearLayout>
      </ScrollView>
  
  </LinearLayout>