61 lines
2.6 KiB
XML
61 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@drawable/popu_bg"
|
|
android:layout_width="@dimen/dp500"
|
|
android:layout_height="@dimen/dp340"
|
|
android:layout_centerInParent="true">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp25"
|
|
android:layout_centerHorizontal="true">
|
|
<ImageView
|
|
android:layout_gravity="center_horizontal"
|
|
android:id="@+id/im_download_error_icon"
|
|
android:background="@drawable/dialog_erro_logo"
|
|
android:layout_width="@dimen/dp100"
|
|
android:layout_height="@dimen/dp100"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp20"
|
|
android:textColor="@color/txt_E21473"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp20"
|
|
android:text="@string/tips_download_failed"
|
|
android:layout_below="@+id/im_download_error_icon"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/dp20"
|
|
android:layout_alignParentBottom="true">
|
|
<Button
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@android:color/white"
|
|
android:id="@+id/btnCancelDownload"
|
|
android:background="@drawable/negative_btn_bg"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp30"
|
|
android:layout_marginRight="@dimen/dp10"
|
|
android:text="@string/cancel"
|
|
android:layout_weight="1"/>
|
|
<Button
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@android:color/white"
|
|
android:ellipsize="middle"
|
|
android:id="@+id/btnContinueDownload"
|
|
android:background="@drawable/positive_btn_bg"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp10"
|
|
android:layout_marginRight="@dimen/dp30"
|
|
android:text="@string/update_download"
|
|
android:singleLine="true"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|