<?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="wrap_content"
|
android:background="@drawable/shape_user_protocol_dialog_bg"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="20dp"
|
android:layout_marginBottom="20dp"
|
android:text="正在下载"
|
android:textColor="#010101"
|
android:textSize="16sp"></TextView>
|
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="20dp"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp">
|
|
<ImageView
|
android:id="@+id/iv_progress_bg"
|
android:layout_width="match_parent"
|
android:layout_height="20dp"
|
android:scaleType="fitXY"
|
android:src="@drawable/process_share_multi_img_bg_"></ImageView>
|
|
<ImageView
|
android:id="@+id/iv_progress"
|
android:layout_width="100dp"
|
android:layout_height="match_parent"
|
android:layout_gravity="left|center_vertical"
|
android:layout_marginLeft="3px"
|
android:layout_marginTop="1px"
|
android:layout_marginBottom="2px"
|
android:scaleType="fitXY"
|
android:src="@drawable/process_share_multi_img"></ImageView>
|
|
</FrameLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_percent"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="-3dp"
|
android:orientation="vertical"
|
android:paddingLeft="3dp">
|
|
<ImageView
|
android:id="@+id/iv_percent_top"
|
android:layout_width="5dp"
|
android:layout_height="5dp"
|
android:layout_gravity="center_horizontal"
|
android:src="@drawable/multi_img_download_percent_bg"></ImageView>
|
|
<TextView
|
android:id="@+id/tv_percent"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shape_multi_images_download"
|
android:gravity="center"
|
android:text="20%"
|
android:textColor="#DE0051"
|
android:textSize="10sp"></TextView>
|
</LinearLayout>
|
|
|
<TextView
|
android:id="@+id/tv_progress_desc"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="20dp"
|
android:layout_marginBottom="30dp"
|
android:text="已下载1/9张图片,请稍候..."
|
android:textColor="#ff333333"
|
android:textSize="12sp" />
|
</LinearLayout>
|
|
|
</LinearLayout>
|