Blame view

res/layout/activity_black_idcard.xml 1.49 KB
5acca6a8   杜方   畅游通核销app: 1.补漏上次未上传
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?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:orientation="vertical"
      android:background="@color/white">
  
      <include layout="@layout/app_top_title" />
  
      <LinearLayout
          android:id="@+id/llayout"
          android:layout_width="match_parent"
          android:layout_height="0dp"
          android:layout_weight="1"
          android:orientation="vertical"
          android:weightSum="5">
fe95a7d1   杜方   畅游通核销app:1.type为1...
17
18
19
20
21
22
23
24
          <TextView
              android:id="@+id/tips"
              android:layout_width="match_parent"
              android:layout_height="@dimen/dp_48"
              android:background="@color/showBlue"
              android:gravity="center"
              android:text="@string/induction_zone"
              android:textSize="@dimen/sp_25" />
5acca6a8   杜方   畅游通核销app: 1.补漏上次未上传
25
26
27
28
29
30
31
32
          <ImageView
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_gravity="center_horizontal"
              android:layout_weight="4"
              android:src="@drawable/black_idcard" />
  
          <TextView
fe95a7d1   杜方   畅游通核销app:1.type为1...
33
34
35
36
37
38
39
              android:id="@+id/tv_no_id"
              android:layout_width="match_parent"
              android:layout_height="@dimen/dp_68"
              android:background="@color/showBlue"
              android:gravity="center"
              android:text=" -点击手输身份证- "
              android:textSize="@dimen/sp_25" />
5acca6a8   杜方   畅游通核销app: 1.补漏上次未上传
40
41
42
      </LinearLayout>
  
  </LinearLayout>