| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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"
- tools:context=".ui.first.ReadingActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/reading_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="#5680FA"
- app:titleColor="@color/white"
- app:title="eVVM信息读取" />
- <ImageView
- android:id="@+id/reading_bg"
- android:layout_below="@id/reading_title"
- android:src="@mipmap/iv_reading"
- android:scaleType="center"
- android:layout_width="wrap_content"
- android:layout_height="322dp" />
- <ProgressBar
- android:id="@+id/reading_progress"
- android:layout_below="@id/reading_title"
- android:layout_marginTop="235dp"
- android:layout_centerHorizontal="true"
- style="@android:style/Widget.ProgressBar.Horizontal"
- android:layout_width="174dp"
- android:layout_height="wrap_content"
- android:max="100"
- android:maxHeight="4dp"
- android:minHeight="4dp"
- android:progress="20"
- android:progressDrawable="@drawable/m_progress_horizontal"
- android:secondaryProgress="20" />
- <LinearLayout
- android:layout_below="@id/reading_bg"
- android:layout_marginTop="13.4dp"
- android:layout_marginLeft="52dp"
- android:orientation="horizontal"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <TextView
- android:ems="1"
- android:textSize="13.4sp"
- android:layout_marginRight="7dp"
- android:text="请将微电子标签贴近您手机"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:ems="1"
- android:text="背部的N F C天线标识位置"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <ImageView
- android:layout_marginBottom="2dp"
- android:layout_alignParentBottom="true"
- android:src="@mipmap/iv_reading_phone"
- android:scaleType="center"
- android:layout_marginLeft="125.8dp"
- android:layout_width="wrap_content"
- android:layout_height="322dp" />
- </RelativeLayout>
|