summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-09 19:52:47 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-09 19:52:47 +0200
commitd1c73645c4829f6e2f33e355ef9120887944b3de (patch)
treeae9c1dd873fde48fd66ce72980d806d9b5c05d15 /res/layout
parentf73c4020055f5eaab121ca1959c2cd8dda54ccf0 (diff)
downloadAntennaPod-d1c73645c4829f6e2f33e355ef9120887944b3de.zip
Added error activity if no external storage is available
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/storage_error.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/res/layout/storage_error.xml b/res/layout/storage_error.xml
new file mode 100644
index 000000000..f2e412f46
--- /dev/null
+++ b/res/layout/storage_error.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+ <ImageView
+ android:id="@+id/imageView1"
+ android:layout_width="30dp"
+ android:layout_height="30dp"
+ android:layout_centerHorizontal="true"
+ android:layout_centerVertical="true"
+ android:layout_margin="16dp"
+ android:src="@android:drawable/stat_notify_sdcard_usb" />
+
+ <TextView
+ android:id="@+id/textView1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@+id/imageView1"
+ android:layout_centerHorizontal="true"
+ android:layout_margin="8dp"
+ android:text="@string/external_storage_error_msg" />
+
+</RelativeLayout> \ No newline at end of file