Blame view

res/layout/app_update_notice.xml 2 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  <?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="match_parent"
      android:background="#ffffff"
      android:minWidth="200dp"
      android:orientation="vertical" >
  
      <TextView
          android:id="@+id/titleText"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:background="@color/actionbarColor"
          android:gravity="center"
          android:minWidth="100dp"
          android:paddingBottom="12dp"
          android:paddingLeft="10dp"
          android:paddingRight="10dp"
          android:paddingTop="12dp"
          android:textColor="#ffffff"
          android:textSize="22dp" />
  
      <TextView
          android:id="@+id/contentText"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:minLines="3"
          android:padding="6dp"
          android:textColor="#000000"
          android:textSize="18dp" />
  
      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="horizontal" >
  
          <Button
              android:id="@+id/okBtn"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:layout_weight="1"
              android:background="#5CACEE"
              android:paddingBottom="10dp"
              android:paddingTop="10dp"
              android:text="确定"
              android:textColor="#ffffff"
              android:textSize="20dp" />
  
          <Button
              android:id="@+id/cancleBtn"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:layout_weight="1"
              android:background="#66CDAA"
              android:paddingBottom="10dp"
              android:paddingTop="10dp"
              android:text="取消"
              android:textColor="#ffffff"
              android:textSize="20dp" />
      </LinearLayout>
  
  </LinearLayout>