Blame view

res/layout/app_input_idcard.xml 2.1 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
  <?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="@color/top_title_bg"
      android:orientation="vertical" >
  
      <include layout="@layout/app_top_title" />
  
      <View
          android:layout_width="fill_parent"
          android:layout_height="0.5dp"
          android:background="#FFFFFF" />
  
      <LinearLayout
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical" >
  
          <LinearLayout
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:layout_marginBottom="10dp"
              android:layout_marginLeft="10dp"
              android:layout_marginRight="10dp"
              android:layout_marginTop="15dp"
              android:background="@drawable/bg_list_item_cricleshape"
              android:orientation="vertical" >
  
              <LinearLayout
                  android:id="@+id/layout01"
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content" >
  
                  <EditText
                      android:id="@+id/input_idcard"
                      android:layout_width="match_parent"
                      android:layout_height="wrap_content"
                      android:layout_marginLeft="10dp"
                      android:background="@android:color/transparent"
                      android:duplicateParentState="true"
                      android:gravity="center|left"
                      android:hint="@string/input_idcard_hit"
                      android:longClickable="false"
                      android:singleLine="true"
                      android:textColor="#5C8DAB"
                      android:textColorHint="#5C8DAB"
                      android:paddingTop="15dp"
                      android:paddingBottom="15dp"
                      android:textSize="20sp" />
              </LinearLayout>
          </LinearLayout>
      </LinearLayout>
  
      <include layout="@layout/app_idcard_temple"/>
  
  </LinearLayout>