summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/activity_main.xml15
-rw-r--r--res/layout/activity_view_comic.xml16
-rw-r--r--res/layout/chooser_list.xml33
-rw-r--r--res/layout/comics_grid_row.xml73
-rw-r--r--res/layout/comics_list_row.xml73
-rw-r--r--res/layout/dialog_location.xml14
-rw-r--r--res/layout/dialog_location_compat.xml23
-rw-r--r--res/layout/fragment_comic.xml21
-rw-r--r--res/layout/fragment_comics_list.xml36
-rw-r--r--res/layout/fragment_comics_pager.xml9
-rw-r--r--res/layout/list_item.xml7
11 files changed, 0 insertions, 320 deletions
diff --git a/res/layout/activity_main.xml b/res/layout/activity_main.xml
deleted file mode 100644
index 49a8732..0000000
--- a/res/layout/activity_main.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/FrameLayout1"
- android:fitsSystemWindows="true"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <FrameLayout
- android:id="@+id/comics_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- </FrameLayout>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/activity_view_comic.xml b/res/layout/activity_view_comic.xml
deleted file mode 100644
index 2cc0dd3..0000000
--- a/res/layout/activity_view_comic.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/FrameLayout2"
- android:fitsSystemWindows="true"
- android:background="?attr/viewComicsBackground"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <FrameLayout
- android:id="@+id/comics_pager_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- </FrameLayout>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/chooser_list.xml b/res/layout/chooser_list.xml
deleted file mode 100644
index f4b4a12..0000000
--- a/res/layout/chooser_list.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <ListView
- android:id="@android:id/list"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1" />
-
- <LinearLayout
- android:id="@+id/linearLayout2"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
-
- <Button
- android:id="@+id/btnParent"
- android:layout_width="fill_parent"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="@string/open_parent" />
-
- <Button
- android:id="@+id/btnChoose"
- android:layout_weight="1"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/choose" />
- </LinearLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/comics_grid_row.xml b/res/layout/comics_grid_row.xml
deleted file mode 100644
index f021a3f..0000000
--- a/res/layout/comics_grid_row.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/comics_list_row"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:gravity="center_vertical"
- android:orientation="vertical"
- android:padding="4dp" >
-
- <FrameLayout
- android:id="@+id/imageholder"
- android:layout_width="160dp"
- android:layout_height="160dp"
- android:layout_gravity="center_horizontal"
- android:layout_weight="0"
- android:background="@drawable/comic_tile"
- android:padding="6dp" >
-
- <ImageView
- android:id="@+id/thumbnail"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scaleType="centerInside"
- android:padding="4dp"
- android:src="@drawable/ic_launcher" />
-
- <ImageView
- android:id="@+id/comic_overflow"
- android:layout_gravity="bottom|right"
- android:paddingBottom="4dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:src="@drawable/ic_action_overflow" />
-
- </FrameLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout4"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/file_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="middle"
- android:singleLine="true"
- android:text="Comic_1980.cbz"
- android:textSize="11dp" />
-
- <ProgressBar
- android:id="@+id/file_progress_bar"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="96dp"
- android:layout_height="wrap_content"
- android:layout_weight="1" />
-
- <TextView
- android:id="@+id/file_progress_info"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:gravity="right"
- android:text="12 of 325"
- android:textSize="8dp" />
- </LinearLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/comics_list_row.xml b/res/layout/comics_list_row.xml
deleted file mode 100644
index 5d529f8..0000000
--- a/res/layout/comics_list_row.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/comics_list_row"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/listPreferredItemHeight"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:padding="4dp" >
-
- <FrameLayout
- android:id="@+id/imageholder"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:layout_weight="0"
- android:background="@drawable/comic_tile"
- android:padding="2dp" >
-
- <ImageView
- android:id="@+id/thumbnail"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/white"
- android:padding="2dp"
- android:scaleType="centerInside"
- android:src="@drawable/ic_launcher" />
- </FrameLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout5"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical"
- android:paddingLeft="4dp" >
-
- <LinearLayout
- android:id="@+id/linearLayout4"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
-
- <TextView
- android:id="@+id/file_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="middle"
- android:singleLine="true"
- android:text="Comic_1980.cbz" />
-
- <TextView
- android:id="@+id/file_progress_info"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:gravity="right"
- android:text="12 of 325" />
- </LinearLayout>
-
- <ProgressBar
- android:id="@+id/file_progress_bar"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
-
- <ImageView
- android:id="@+id/comic_overflow"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:src="@drawable/ic_action_overflow" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/dialog_location.xml b/res/layout/dialog_location.xml
deleted file mode 100644
index cabbf9a..0000000
--- a/res/layout/dialog_location.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
-
-
-
- <NumberPicker
- android:id="@+id/number_picker"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/dialog_location_compat.xml b/res/layout/dialog_location_compat.xml
deleted file mode 100644
index 385b8d5..0000000
--- a/res/layout/dialog_location_compat.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
-
-
- <SeekBar
- android:id="@+id/number_seeker"
- android:layout_weight="1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
-
-
-
- <TextView
- android:id="@+id/page_number"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:text="1 of 365" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/fragment_comic.xml b/res/layout/fragment_comic.xml
deleted file mode 100644
index cfc54b3..0000000
--- a/res/layout/fragment_comic.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/FrameLayout3"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
- <it.sephiroth.android.library.imagezoom.ImageViewTouch
- android:id="@+id/comic_image"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
-
- <TextView
- android:id="@+id/comic_page"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom|right"
- android:layout_margin="4dp"
- android:alpha="0.25"
- android:text="25" />
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/fragment_comics_list.xml b/res/layout/fragment_comics_list.xml
deleted file mode 100644
index 2461c15..0000000
--- a/res/layout/fragment_comics_list.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- 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" >
-
- <ListView
- android:id="@+id/comics_list"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layoutAnimation="@anim/layout_comics" >
- </ListView>
- </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"
- android:padding="4dp" >
-
- <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_arhives_found_" />
- </LinearLayout>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/fragment_comics_pager.xml b/res/layout/fragment_comics_pager.xml
deleted file mode 100644
index 9d98d34..0000000
--- a/res/layout/fragment_comics_pager.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<org.fox.ttcomics.ViewPager
-xmlns:android="http://schemas.android.com/apk/res/android"
-android:layout_width="fill_parent"
-android:layout_height="fill_parent"
-android:id="@+id/comics_pager">
-
-</org.fox.ttcomics.ViewPager> \ No newline at end of file
diff --git a/res/layout/list_item.xml b/res/layout/list_item.xml
deleted file mode 100644
index 1fb2f8c..0000000
--- a/res/layout/list_item.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:padding="10dp"
- android:textSize="16sp" >
-</TextView> \ No newline at end of file