summaryrefslogtreecommitdiff
path: root/vdrmanager/res/layout/no_connection.xml
diff options
context:
space:
mode:
authorgit-vdr <herrlado@gmail.com>2011-10-04 01:33:15 +0200
committergit-vdr <herrlado@gmail.com>2011-10-04 01:33:15 +0200
commit5cf7f4253f9bff4ac29aa472c179acdd234dd365 (patch)
treee1c8b71abe62a52cec3cefbf3b799acf15dd61c0 /vdrmanager/res/layout/no_connection.xml
parentec373d2bdb2b3c6f5967fb2280149adebcddb709 (diff)
downloadvdr-manager-5cf7f4253f9bff4ac29aa472c179acdd234dd365.tar.gz
vdr-manager-5cf7f4253f9bff4ac29aa472c179acdd234dd365.tar.bz2
generic no connection reload layout
Diffstat (limited to 'vdrmanager/res/layout/no_connection.xml')
-rw-r--r--vdrmanager/res/layout/no_connection.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/vdrmanager/res/layout/no_connection.xml b/vdrmanager/res/layout/no_connection.xml
new file mode 100644
index 0000000..c2a62e2
--- /dev/null
+++ b/vdrmanager/res/layout/no_connection.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout android:orientation="vertical"
+ android:layout_width="fill_parent" android:layout_height="fill_parent"
+ xmlns:android="http://schemas.android.com/apk/res/android" android:visibility="gone">
+ <LinearLayout android:layout_height="fill_parent" android:gravity="center"
+ android:layout_width="fill_parent" android:orientation="horizontal">
+ <TextView android:text="@string/no_connection" android:layout_height="wrap_content" android:layout_width="wrap_content" android:textSize="18dip"/>
+ <ImageView android:src="@drawable/sad" android:layout_height="wrap_content" android:layout_width="wrap_content"/>
+ <Button android:text="@string/no_connection_retry" android:textSize="18dip"
+ android:layout_height="wrap_content" android:layout_width="wrap_content"
+ android:id="@+id/retry_button" />
+ </LinearLayout>
+</LinearLayout>