83 lines
2.8 KiB
XML
83 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="250dp"
|
|
android:layout_height="310dp"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="250dp"
|
|
android:layout_height="310dp"
|
|
android:src="@mipmap/update_tip_box" />
|
|
|
|
<ScrollView
|
|
android:layout_width="200dp"
|
|
android:layout_height="110dp"
|
|
android:layout_marginStart="28dp"
|
|
android:layout_marginTop="135dp"
|
|
android:scrollbars="none">
|
|
|
|
<TextView
|
|
android:id="@+id/update_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="更新內容:
|
|
1、內容內容內容內容內容內容
|
|
2、內容內容內容內容內容內容
|
|
3、內容內容內容內容內容
|
|
4、內容內容內容內容內容"
|
|
android:textColor="#1B1B1B"
|
|
android:textSize="12sp" />
|
|
</ScrollView>
|
|
|
|
<TextView
|
|
android:id="@+id/version_immediate_use"
|
|
android:layout_width="153.33dp"
|
|
android:layout_height="26.67dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="15dp"
|
|
android:background="@drawable/bg_apk_update_btn"
|
|
android:gravity="center"
|
|
android:text="@string/version_immediate_use"
|
|
android:textColor="@color/white"
|
|
android:textSize="10sp"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/update_line"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="15dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="200dp"
|
|
android:layout_height="9dp"
|
|
android:max="100"
|
|
android:progress="0"
|
|
android:progressDrawable="@drawable/progress_bg" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="7dp"
|
|
android:text="@string/updating"
|
|
android:textColor="#8C8C8C"
|
|
android:textSize="11sp" />
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/dialog_close"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginTop="60dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:src="@mipmap/icon_close_tip" />
|
|
|
|
</RelativeLayout> |