Blame view

C5/app/src/main/res/layout/eula_layout.xml 1.67 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
43
44
45
46
47
48
  <?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/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_permissions"
          android:textSize="16sp" />
  
      <ScrollView
          android:layout_width="match_parent"
          android:layout_height="240dp" >
  
          <TextView
              android:id="@+id/content_permissions"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_gravity="center_horizontal"
              android:layout_marginTop="5dp"
              android:layout_marginLeft="10dp"
              android:layout_marginRight="10dp" />
      </ScrollView>
  
      <TextView
          android:id="@+id/read_statement"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_gravity="center_horizontal"
          android:layout_marginTop="10dp"
          android:layout_marginLeft="10dp"
          android:layout_marginRight="10dp"
          android:text="@string/read_statement" />
      <CheckBox 
          android:id="@+id/not_show_check"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginTop="5dp"
          android:textSize="12sp"
          android:text="@string/not_show_anymore"/>
  
  </LinearLayout>