2014-03-09 21:56:40 -04:00
|
|
|
<?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="match_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView1"
|
2014-03-10 00:07:57 -04:00
|
|
|
android:layout_width="@dimen/image_width"
|
|
|
|
android:layout_height="@dimen/image_height"
|
2014-03-10 08:57:43 -04:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:padding="@dimen/image_padding"
|
2014-03-09 21:56:40 -04:00
|
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-10 08:57:43 -04:00
|
|
|
android:ems="10"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/download_error" />
|
2014-03-09 21:56:40 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|