46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
|
<?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/white"
|
||
|
android:clickable="true"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="65dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:paddingTop="30dp"
|
||
|
android:textColor="@color/textColor"
|
||
|
android:textSize="17sp" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/btn_back"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_marginBottom="3dp"
|
||
|
android:padding="9dp"
|
||
|
android:src="@mipmap/icon_back"
|
||
|
android:tint="@color/textColor" />
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="1dp"
|
||
|
android:background="@color/gray2" />
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressbar"
|
||
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="3dp"
|
||
|
android:progressDrawable="@drawable/bg_horizontal_progressbar" />
|
||
|
</LinearLayout>
|