49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@android:color/white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
<ImageView
|
|
android:id="@+id/imgErrorLog"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@color/txt_E14470"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/robot_download_failed"
|
|
android:text="@string/tips_download_failed"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<Button
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@android:color/white"
|
|
android:id="@+id/btnCancelDownload"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="9dp"
|
|
android:text="@string/cancel"
|
|
android:layout_weight="1"/>
|
|
<Button
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@android:color/white"
|
|
android:id="@+id/btnContinueDownload"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="9dp"
|
|
android:text="@string/update_download"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|