summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_comics_list.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-02-11 11:49:51 +0300
committerAndrew Dolgov <[email protected]>2015-02-11 11:49:51 +0300
commit68ae4822e2777ef3d065c18b1c3964cc4d01b486 (patch)
tree77606adb89429c1ecd8756b3b403267a352e4069 /app/src/main/res/layout/fragment_comics_list.xml
parent2dbc784804774f563601b7af4b2082be89c08cd3 (diff)
rename main module
Diffstat (limited to 'app/src/main/res/layout/fragment_comics_list.xml')
-rw-r--r--app/src/main/res/layout/fragment_comics_list.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_comics_list.xml b/app/src/main/res/layout/fragment_comics_list.xml
new file mode 100644
index 0000000..5037747
--- /dev/null
+++ b/app/src/main/res/layout/fragment_comics_list.xml
@@ -0,0 +1,34 @@
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/FrameLayout4"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <android.support.v4.widget.SwipeRefreshLayout
+ android:id="@+id/comics_swipe_container"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+ <GridView
+ android:id="@+id/comics_grid"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:columnWidth="160dp"
+ android:numColumns="auto_fit" >
+ </GridView>
+ </android.support.v4.widget.SwipeRefreshLayout>
+
+ <LinearLayout
+ android:id="@+id/no_comics"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_gravity="center"
+ android:orientation="vertical" >
+
+ <TextView
+ android:id="@+id/textView1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:text="@string/error_no_comic_archives_found_" />
+ </LinearLayout>
+
+</FrameLayout> \ No newline at end of file