89 lines
2.9 KiB
XML
89 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@string/load_back"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/m_loading" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<View
|
|
android:id="@+id/view2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight=".70" />
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="5dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="horizontal">
|
|
<View
|
|
android:layout_width="0dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="0.1"/>
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="0dp"
|
|
android:layout_weight=".8"
|
|
android:layout_height="5dp"
|
|
android:progressDrawable="@drawable/progressbar_bg"
|
|
/>
|
|
<View
|
|
android:layout_width="0dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="0.1"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="25dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
<View
|
|
android:layout_width="0dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="0.15"/>
|
|
|
|
<TextView
|
|
android:id="@+id/loadLabel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="20dp"
|
|
android:layout_weight="0.7"
|
|
android:gravity="center"
|
|
android:textColor="#C2D7AC" />
|
|
<View
|
|
android:layout_width="0dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="0.15"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/view3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight=".20" />
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|