| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <com.hjq.bar.TitleBar
- android:id="@+id/reading_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="#5680FA"
- app:leftColor="@color/white"
- app:backButton="false"
- app:title="eVVM信息读取"
- app:titleColor="@color/white">
- </com.hjq.bar.TitleBar>
- <ImageView
- android:id="@+id/reading_bg"
- android:layout_width="wrap_content"
- android:layout_height="322dp"
- android:layout_below="@id/reading_title"
- android:scaleType="center"
- android:src="@mipmap/iv_reading" />
- <ImageView
- android:id="@+id/reading__line"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="93dp"
- android:layout_marginTop="113dp"
- android:src="@mipmap/iv_sao_args" />
- <ProgressBar
- android:id="@+id/reading_progress"
- style="@android:style/Widget.ProgressBar.Horizontal"
- android:layout_width="174dp"
- android:layout_height="wrap_content"
- android:layout_below="@id/reading_title"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="235dp"
- android:max="100"
- android:maxHeight="4dp"
- android:minHeight="4dp"
- android:progress="20"
- android:progressDrawable="@drawable/m_progress_horizontal"
- android:secondaryProgress="20" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/reading_bg"
- android:layout_marginLeft="52dp"
- android:layout_marginTop="13.4dp"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="7dp"
- android:ems="1"
- android:text="请将微电子标签贴近您手机"
- android:textSize="13.4sp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:ems="1"
- android:text="背部的N F C天线标识位置" />
- </LinearLayout>
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="322dp"
- android:layout_alignParentBottom="true"
- android:layout_marginLeft="125.8dp"
- android:layout_marginBottom="2dp"
- android:scaleType="center"
- android:src="@mipmap/iv_reading_phone" />
- </RelativeLayout>
|