69 lines
2.2 KiB
XML
69 lines
2.2 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:orientation="vertical">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/ft_title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="65dp"
|
||
|
android:background="@color/white"
|
||
|
android:paddingTop="19dp">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/titleView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:gravity="center"
|
||
|
android:textColor="@color/textColor"
|
||
|
android:textSize="18sp"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/btn_back"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:onClick="backClick"
|
||
|
android:padding="9dp"
|
||
|
android:src="@mipmap/icon_back"
|
||
|
android:tint="@color/textColor" />
|
||
|
|
||
|
</RelativeLayout>
|
||
|
</FrameLayout>
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<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
|
||
|
android:orientation="vertical"
|
||
|
android:id="@+id/rootView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"/>
|
||
|
|
||
|
|
||
|
<com.opensource.svgaplayer.SVGAImageView
|
||
|
android:id="@+id/svga"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_gravity="center_vertical"/>
|
||
|
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|
||
|
|
||
|
</LinearLayout>
|