45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="16dp"
|
|
android:gravity="center_vertical"
|
|
android:background="@drawable/app_dialog_bg">
|
|
<ImageView
|
|
android:id="@+id/ivIcon"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@mipmap/ic_launcher"
|
|
android:layout_marginRight="4dp"/>
|
|
<TextView
|
|
android:id="@+id/tvDialogTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@+id/ivIcon"
|
|
android:textSize="14sp"
|
|
android:textColor="#333333"
|
|
android:text="更新中"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvProgress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/tvDialogTitle"
|
|
android:layout_marginTop="10dp"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:text="正在下載中......"
|
|
android:textColor="#333333"
|
|
android:textSize="14sp" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="6dp"
|
|
android:layout_below="@+id/tvProgress"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:max="100" />
|
|
</RelativeLayout> |