summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-17 00:06:56 +0400
committerAndrew Dolgov <[email protected]>2014-10-17 00:06:56 +0400
commit97cc96839d31b6cce59ec29a6681c6fe802552ee (patch)
tree9f3b8df270095bc65c10cd7208d05b3dad4794b9 /res/layout
parent5775c0d56b7c856b508bb34e478eef53c2460624 (diff)
initial
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/article_fragment.xml103
-rw-r--r--res/layout/article_fragment_compat.xml79
-rw-r--r--res/layout/article_pager.xml22
-rw-r--r--res/layout/cats_fragment.xml44
-rw-r--r--res/layout/dummy_fragment.xml7
-rw-r--r--res/layout/feeds.xml29
-rw-r--r--res/layout/feeds_fragment.xml44
-rw-r--r--res/layout/feeds_row.xml64
-rw-r--r--res/layout/feeds_row_selected.xml65
-rw-r--r--res/layout/headlines.xml29
-rw-r--r--res/layout/headlines_articles.xml50
-rw-r--r--res/layout/headlines_fragment.xml47
-rw-r--r--res/layout/headlines_row.xml162
-rw-r--r--res/layout/headlines_row_loadmore.xml26
-rw-r--r--res/layout/headlines_row_selected.xml160
-rw-r--r--res/layout/headlines_row_selected_unread.xml161
-rw-r--r--res/layout/headlines_row_unread.xml160
-rw-r--r--res/layout/loading_fragment.xml14
-rw-r--r--res/layout/login.xml15
-rw-r--r--res/layout/select_font_size_dialog.xml22
-rw-r--r--res/layout/share.xml55
-rw-r--r--res/layout/subscribe.xml51
-rw-r--r--res/layout/tasker_settings.xml36
-rw-r--r--res/layout/widget_small.xml42
24 files changed, 0 insertions, 1487 deletions
diff --git a/res/layout/article_fragment.xml b/res/layout/article_fragment.xml
deleted file mode 100644
index fde7c106..00000000
--- a/res/layout/article_fragment.xml
+++ /dev/null
@@ -1,103 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/article_fragment"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:background="?articleBackground">
-
- <org.fox.ttrss.util.NoChildFocusScrollView
- android:id="@+id/article_scrollview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="false" >
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <LinearLayout
- android:id="@+id/article_header"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingBottom="6dp" >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:paddingTop="4dp"
- android:text="My simple headline"
- android:textColor="?linkColor"
- android:textSize="18sp" />
-
- <TextView
- android:id="@+id/comments"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:fontFamily="sans-serif-light"
- android:paddingTop="4dp"
- android:text="24 comments"
- android:textColor="?linkColor"
- android:textSize="12sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:paddingTop="4dp"
- android:paddingBottom="4dp" >
-
- <TextView
- android:id="@+id/tags"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="middle"
- android:singleLine="true"
- android:fontFamily="sans-serif-light"
- android:text="Example Feed"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:gravity="right"
- android:layout_marginLeft="10dp"
- android:fontFamily="sans-serif-light"
- android:text="Jan 01, 12:00"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- </LinearLayout>
-
- </LinearLayout>
-
- <TextView
- android:id="@+id/note"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="?articleNoteBackground"
- android:textColor="?articleNoteTextColor"
- android:textSize="13sp"
- android:padding="2dp"
- android:layout_marginBottom="6dp"
- android:text="[Article note]" />
-
- <org.fox.ttrss.util.LessBrokenWebView
- android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
-
- </LinearLayout>
- </org.fox.ttrss.util.NoChildFocusScrollView>
-
-
-</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/article_fragment_compat.xml b/res/layout/article_fragment_compat.xml
deleted file mode 100644
index 01264703..00000000
--- a/res/layout/article_fragment_compat.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/article_fragment"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="?articleBackground"
- android:orientation="vertical"
- android:padding="5sp" >
-
- <org.fox.ttrss.util.TitleWebView
- android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight="1">
-
- <LinearLayout
- android:id="@+id/article_header"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:orientation="vertical"
- android:paddingBottom="2dp" >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:paddingBottom="4dp"
- android:text="My simple headline"
- android:textColor="?linkColor"
- android:textSize="18sp" />
-
- <TextView
- android:id="@+id/comments"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="right"
- android:text="24 comments"
- android:fontFamily="sans-serif-light"
- android:textColor="?linkColor"
- android:textSize="12sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="4dp"
- android:layout_weight="1" >
-
- <TextView
- android:id="@+id/tags"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0.5"
- android:ellipsize="end"
- android:singleLine="true"
- android:text="Example Feed"
- android:fontFamily="sans-serif-light"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0.5"
- android:gravity="right"
- android:text="Jan 01, 12:00"
- android:fontFamily="sans-serif-light"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
- </LinearLayout>
- </LinearLayout>
-
-
- </org.fox.ttrss.util.TitleWebView>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/article_pager.xml b/res/layout/article_pager.xml
deleted file mode 100644
index 495eac4b..00000000
--- a/res/layout/article_pager.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/article_pager_container"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
- <android.support.v4.view.ViewPager
- android:id="@+id/article_pager"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_alignParentTop="true" >
-
- </android.support.v4.view.ViewPager>
-
- <com.viewpagerindicator.UnderlinePageIndicator
- android:id="@+id/article_titles"
- android:layout_width="fill_parent"
- android:layout_height="2dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true" />
-
-</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/cats_fragment.xml b/res/layout/cats_fragment.xml
deleted file mode 100644
index cc295e1c..00000000
--- a/res/layout/cats_fragment.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/cats_fragment.xml"
- android:layout_width="match_parent"
- android:layout_height="fill_parent" >
-
- <LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge" >
- </TextView>
- </LinearLayout>
-
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/feeds_swipe_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <ListView
- android:id="@+id/feeds"
- android:layoutAnimation="@anim/layout_feeds"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </ListView>
- </android.support.v4.widget.SwipeRefreshLayout>
-
- <TextView
- android:id="@+id/no_feeds"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="@string/no_feeds"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:visibility="invisible" >
- </TextView>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/dummy_fragment.xml b/res/layout/dummy_fragment.xml
deleted file mode 100644
index 665e60db..00000000
--- a/res/layout/dummy_fragment.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/dummy_fragment"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/feeds.xml b/res/layout/feeds.xml
deleted file mode 100644
index ce021004..00000000
--- a/res/layout/feeds.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/main"
- android:fitsSystemWindows="true"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
- <LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:visibility="gone" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </LinearLayout>
-
- <FrameLayout
- android:id="@+id/feeds_fragment"
- android:background="?smallScreenBackground"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </FrameLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/feeds_fragment.xml b/res/layout/feeds_fragment.xml
deleted file mode 100644
index 91648b22..00000000
--- a/res/layout/feeds_fragment.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/feeds_fragment"
- android:layout_width="match_parent"
- android:layout_height="fill_parent" >
-
- <LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge" >
- </TextView>
- </LinearLayout>
-
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/feeds_swipe_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <ListView
- android:id="@+id/feeds"
- android:layoutAnimation="@anim/layout_feeds"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </ListView>
- </android.support.v4.widget.SwipeRefreshLayout>
-
- <TextView
- android:id="@+id/no_feeds"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="@string/no_feeds"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:visibility="invisible" >
- </TextView>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/feeds_row.xml b/res/layout/feeds_row.xml
deleted file mode 100644
index 9424fde8..00000000
--- a/res/layout/feeds_row.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/feeds_row"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/listPreferredItemHeight"
- android:descendantFocusability="blocksDescendants"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingBottom="10dip"
- android:paddingLeft="8dip"
- android:paddingRight="8dip"
- android:paddingTop="10dip" >
-
- <ImageView
- android:id="@+id/icon"
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:layout_weight="0"
- android:scaleType="fitXY"
- android:src="@drawable/ic_unpublished" />
-
- <TextView
- android:id="@+id/title"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_weight="1"
- android:ellipsize="end"
- android:paddingLeft="8dip"
- android:singleLine="true"
- android:text="{FEED}"
- android:textColor="?feedlistTextColor"
- android:textSize="18dip" />
-
- <TextView
- android:id="@+id/unread_counter"
- android:layout_width="45dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:background="?attr/unreadCounterBackground"
- android:gravity="center"
- android:paddingBottom="4dp"
- android:paddingLeft="4dp"
- android:paddingRight="4dp"
- android:paddingTop="4dp"
- android:singleLine="true"
- android:text="3200"
- android:textColor="?unreadCounterColor"
- android:textSize="12sp"
- android:textStyle="bold" />
-
- <ImageButton
- android:id="@+id/feed_menu_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:background="@null"
- android:paddingLeft="8dp"
- android:paddingRight="4dp"
- android:src="@drawable/ic_action_overflow" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/feeds_row_selected.xml b/res/layout/feeds_row_selected.xml
deleted file mode 100644
index 674e9f23..00000000
--- a/res/layout/feeds_row_selected.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/feeds_row"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/listPreferredItemHeight"
- android:background="?feedsSelectedBackground"
- android:descendantFocusability="blocksDescendants"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingBottom="10dip"
- android:paddingLeft="8dip"
- android:paddingRight="8dip"
- android:paddingTop="10dip" >
-
- <ImageView
- android:id="@+id/icon"
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:layout_weight="0"
- android:scaleType="fitXY"
- android:src="@drawable/ic_unpublished" />
-
- <TextView
- android:id="@+id/title"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_weight="1"
- android:ellipsize="end"
- android:paddingLeft="8dip"
- android:singleLine="true"
- android:text="{FEED}"
- android:textColor="?feedlistSelectedTextColor"
- android:textSize="18dip" />
-
- <TextView
- android:id="@+id/unread_counter"
- android:layout_width="45dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:background="?attr/unreadSelectedCounterBackground"
- android:gravity="center"
- android:paddingBottom="4dp"
- android:paddingLeft="4dp"
- android:paddingRight="4dp"
- android:paddingTop="4dp"
- android:singleLine="true"
- android:text="3200"
- android:textColor="?unreadCounterColor"
- android:textSize="12sp"
- android:textStyle="bold" />
-
- <ImageButton
- android:id="@+id/feed_menu_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:background="@null"
- android:paddingLeft="8dp"
- android:paddingRight="4dp"
- android:src="@drawable/ic_action_overflow" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/headlines.xml b/res/layout/headlines.xml
deleted file mode 100644
index 66eeb0fb..00000000
--- a/res/layout/headlines.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines"
- android:fitsSystemWindows="true"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
- <LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:visibility="gone" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </LinearLayout>
-
- <FrameLayout
- android:id="@+id/headlines_fragment"
- android:background="?smallScreenBackground"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </FrameLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/headlines_articles.xml b/res/layout/headlines_articles.xml
deleted file mode 100644
index 9f477e8a..00000000
--- a/res/layout/headlines_articles.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines"
- android:fitsSystemWindows="true"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?loadingBackground"
- android:gravity="center"
- android:orientation="vertical"
- android:visibility="visible" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:text="@string/loading_message"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/fragment_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:baselineAligned="false"
- android:orientation="horizontal" >
-
- <FrameLayout
- android:id="@+id/headlines_fragment"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="0"
- android:background="?feedlistBackground" >
- </FrameLayout>
-
- <FrameLayout
- android:id="@+id/article_fragment"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="?articleBackground" >
- </FrameLayout>
- </LinearLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/headlines_fragment.xml b/res/layout/headlines_fragment.xml
deleted file mode 100644
index 712da85e..00000000
--- a/res/layout/headlines_fragment.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines_fragment"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
-
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/headlines_swipe_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
-
- <ListView
- android:id="@+id/headlines"
- android:layout_width="match_parent"
- android:layoutAnimation="@anim/layout_headline"
- android:dividerHeight="0dp"
- android:divider="@null"
- android:paddingTop="3dp"
- android:layout_height="match_parent" >
- </ListView>
- </android.support.v4.widget.SwipeRefreshLayout>
-
- <LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge" >
- </TextView>
- </LinearLayout>
-
- <TextView
- android:id="@+id/no_headlines"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="@string/no_headlines"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:visibility="invisible" >
- </TextView>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/headlines_row.xml b/res/layout/headlines_row.xml
deleted file mode 100644
index 77233430..00000000
--- a/res/layout/headlines_row.xml
+++ /dev/null
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/headlines_row"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="3dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="3dp"
- tools:ignore="HardcodedText" >
-
- <LinearLayout
- android:id="@+id/inner_row"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?headlineNormalBackground"
- android:orientation="vertical"
- android:paddingBottom="2dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="6dp" >
-
- <LinearLayout
- android:id="@+id/linearLayout6"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:singleLine="false"
- android:text="Sample entry title"
- android:textColor="?headlineTextColor"
- android:textSize="18sp" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingTop="3dp" >
-
- <TextView
- android:id="@+id/feed_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="Example Feed"
- android:fontFamily="sans-serif-light"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="right|center_vertical"
- android:text="Jan 01, 12:00"
- android:fontFamily="sans-serif-light"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
- </LinearLayout>
-
- <FrameLayout
- android:paddingTop="3dp"
- android:id="@+id/flavorImageHolder"
- android:layout_width="match_parent"
- android:layout_gravity="center"
- android:layout_height="wrap_content" >
-
- <org.fox.ttrss.util.EnlargingImageView
- android:id="@+id/flavor_image"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:adjustViewBounds="true"
- android:background="@drawable/flavor_image_border"
- android:scaleType="fitCenter"
- android:cropToPadding="true"
- android:padding="2dp"
- android:visibility="gone" />
- </FrameLayout>
-
- <TextView
- android:id="@+id/excerpt"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingTop="3dp"
- android:lineSpacingExtra="2sp"
- android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- android:textColor="?headlineExcerptTextColor"
- android:textSize="13sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical" >
-
- <CheckBox
- android:id="@+id/selected"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:focusable="false" />
-
- <TextView
- android:id="@+id/author"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="by Author"
- android:fontFamily="sans-serif-light"
- android:textStyle="italic"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <ImageView
- android:id="@+id/marked"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="8dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_star_empty" />
-
- <ImageView
- android:id="@+id/published"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_unpublished" />
-
- <ImageView
- android:id="@+id/article_menu_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:src="@drawable/ic_action_overflow" />
- </LinearLayout>
- </LinearLayout>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/headlines_row_loadmore.xml b/res/layout/headlines_row_loadmore.xml
deleted file mode 100644
index 053186bd..00000000
--- a/res/layout/headlines_row_loadmore.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines_row_loadmore"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="?headlineNormalBackground"
- android:gravity="center"
- android:padding="5dp"
- android:orientation="horizontal" >
-
-
- <ProgressBar
- android:id="@+id/loadmore_progress"
- style="?android:attr/progressBarStyleSmall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
- <TextView
- android:paddingLeft="6dp"
- android:id="@+id/loadmore_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="?headlineTextColor"
- android:text="@string/loading_message" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/headlines_row_selected.xml b/res/layout/headlines_row_selected.xml
deleted file mode 100644
index b8c4516a..00000000
--- a/res/layout/headlines_row_selected.xml
+++ /dev/null
@@ -1,160 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines_row"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="3dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="3dp" >
-
- <LinearLayout
- android:id="@+id/inner_row"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?headlineSelectedBackground"
- android:orientation="vertical"
- android:paddingBottom="2dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="6dp" >
-
- <LinearLayout
- android:id="@+id/linearLayout6"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:singleLine="false"
- android:text="Sample entry title"
- android:textColor="?attr/headlineSelectedTextColor"
- android:textSize="18sp" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingTop="3dp" >
-
- <TextView
- android:id="@+id/feed_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:fontFamily="sans-serif-light"
- android:text="Example Feed"
- android:textColor="?headlineSelectedSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="right|center_vertical"
- android:text="Jan 01, 12:00"
- android:fontFamily="sans-serif-light"
- android:textColor="?headlineSelectedSecondaryTextColor"
- android:textSize="12sp" />
- </LinearLayout>
-
- <FrameLayout
- android:paddingTop="3dp"
- android:id="@+id/flavorImageHolder"
- android:layout_width="match_parent"
- android:layout_gravity="center"
- android:layout_height="wrap_content" >
-
- <org.fox.ttrss.util.EnlargingImageView
- android:id="@+id/flavor_image"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:adjustViewBounds="true"
- android:background="@drawable/flavor_image_border"
- android:scaleType="fitCenter"
- android:cropToPadding="true"
- android:padding="2dp"
- android:visibility="gone" />
- </FrameLayout>
-
- <TextView
- android:id="@+id/excerpt"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingTop="3dp"
- android:lineSpacingExtra="2sp"
- android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- android:textColor="?headlineSelectedExcerptTextColor"
- android:textSize="13sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical" >
-
- <CheckBox
- android:id="@+id/selected"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:focusable="false" />
-
- <TextView
- android:id="@+id/author"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="by Author"
- android:fontFamily="sans-serif-light"
- android:textStyle="italic"
- android:textColor="?headlineSelectedSecondaryTextColor"
- android:textSize="12sp" />
-
- <ImageView
- android:id="@+id/marked"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="8dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_star_empty" />
-
- <ImageView
- android:id="@+id/published"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_unpublished" />
-
- <ImageView
- android:id="@+id/article_menu_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:src="@drawable/ic_action_overflow" />
- </LinearLayout>
- </LinearLayout>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/headlines_row_selected_unread.xml b/res/layout/headlines_row_selected_unread.xml
deleted file mode 100644
index 927793c8..00000000
--- a/res/layout/headlines_row_selected_unread.xml
+++ /dev/null
@@ -1,161 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines_row"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="3dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="3dp" >
-
- <LinearLayout
- android:id="@+id/inner_row"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?headlineSelectedBackground"
- android:orientation="vertical"
- android:paddingBottom="2dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="6dp" >
-
- <LinearLayout
- android:id="@+id/linearLayout6"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:singleLine="false"
- android:text="Sample entry title"
- android:textColor="?headlineSelectedTextColor"
- android:textSize="18sp"
- android:textStyle="bold" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingTop="3dp" >
-
- <TextView
- android:id="@+id/feed_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="Example Feed"
- android:fontFamily="sans-serif-light"
- android:textColor="?headlineSelectedSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="right|center_vertical"
- android:fontFamily="sans-serif-light"
- android:text="Jan 01, 12:00"
- android:textColor="?headlineSelectedSecondaryTextColor"
- android:textSize="12sp" />
- </LinearLayout>
-
- <FrameLayout
- android:paddingTop="3dp"
- android:id="@+id/flavorImageHolder"
- android:layout_width="match_parent"
- android:layout_gravity="center"
- android:layout_height="wrap_content" >
-
- <org.fox.ttrss.util.EnlargingImageView
- android:id="@+id/flavor_image"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:adjustViewBounds="true"
- android:background="@drawable/flavor_image_border"
- android:scaleType="fitCenter"
- android:cropToPadding="true"
- android:padding="2dp"
- android:visibility="gone" />
- </FrameLayout>
-
- <TextView
- android:id="@+id/excerpt"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingTop="3dp"
- android:lineSpacingExtra="2sp"
- android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- android:textColor="?headlineSelectedExcerptTextColor"
- android:textSize="13sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical" >
-
- <CheckBox
- android:id="@+id/selected"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:focusable="false" />
-
- <TextView
- android:id="@+id/author"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="by Author"
- android:fontFamily="sans-serif-light"
- android:textStyle="italic"
- android:textColor="?headlineSelectedSecondaryTextColor"
- android:textSize="12sp" />
-
- <ImageView
- android:id="@+id/marked"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="8dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_star_empty" />
-
- <ImageView
- android:id="@+id/published"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_unpublished" />
-
- <ImageView
- android:id="@+id/article_menu_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:src="@drawable/ic_action_overflow" />
- </LinearLayout>
- </LinearLayout>
-
-</FrameLayout>
diff --git a/res/layout/headlines_row_unread.xml b/res/layout/headlines_row_unread.xml
deleted file mode 100644
index 107056b9..00000000
--- a/res/layout/headlines_row_unread.xml
+++ /dev/null
@@ -1,160 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/headlines_row"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="3dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="3dp" >
-
- <LinearLayout
- android:id="@+id/inner_row"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?headlineUnreadBackground"
- android:orientation="vertical"
- android:paddingBottom="2dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="6dp" >
-
- <LinearLayout
- android:id="@+id/linearLayout6"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:singleLine="false"
- android:text="Sample entry title"
- android:textColor="?headlineUnreadTextColor"
- android:textSize="18sp"
- android:textStyle="bold" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingTop="3dp" >
-
- <TextView
- android:id="@+id/feed_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="end"
- android:fontFamily="sans-serif-light"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="Example Feed"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
-
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:fontFamily="sans-serif-light"
- android:gravity="right|center_vertical"
- android:text="Jan 01, 12:00"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
- </LinearLayout>
-
- <FrameLayout
- android:id="@+id/flavorImageHolder"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="10dp" >
-
- <org.fox.ttrss.util.EnlargingImageView
- android:id="@+id/flavor_image"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:adjustViewBounds="true"
- android:background="@drawable/flavor_image_border"
- android:scaleType="fitCenter"
- android:cropToPadding="true"
- android:padding="2dp"
- android:visibility="gone" />
- </FrameLayout>
-
- <TextView
- android:id="@+id/excerpt"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:lineSpacingExtra="2sp"
- android:paddingTop="3dp"
- android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- android:textColor="?headlineExcerptTextColor"
- android:textSize="13sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical" >
-
- <CheckBox
- android:id="@+id/selected"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:focusable="false" />
-
- <TextView
- android:id="@+id/author"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:ellipsize="end"
- android:fontFamily="sans-serif-light"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="by Author"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp"
- android:textStyle="italic" />
-
- <ImageView
- android:id="@+id/marked"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="8dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_star_empty" />
-
- <ImageView
- android:id="@+id/published"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_unpublished" />
-
- <ImageView
- android:id="@+id/article_menu_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:src="@drawable/ic_action_overflow" />
- </LinearLayout>
- </LinearLayout>
-
-</FrameLayout> \ No newline at end of file
diff --git a/res/layout/loading_fragment.xml b/res/layout/loading_fragment.xml
deleted file mode 100644
index bc1fd10d..00000000
--- a/res/layout/loading_fragment.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
-
-
- <ProgressBar
- android:id="@+id/progress"
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center" />
-
- </FrameLayout>
diff --git a/res/layout/login.xml b/res/layout/login.xml
deleted file mode 100644
index ef6cbcf6..00000000
--- a/res/layout/login.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/loading_container"
- android:layout_width="fill_parent"
- android:fitsSystemWindows="true"
- android:gravity="center"
- android:layout_height="fill_parent" >
-
- <TextView
- android:id="@+id/loading_message"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:text="@string/loading_message" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/select_font_size_dialog.xml b/res/layout/select_font_size_dialog.xml
deleted file mode 100644
index 23a05a8b..00000000
--- a/res/layout/select_font_size_dialog.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/text_progress"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="6dip"
- android:gravity="center_horizontal" >
- </TextView>
-
- <SeekBar
- android:id="@+id/seek_bar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="6dip"
- android:layout_marginTop="6dip" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/share.xml b/res/layout/share.xml
deleted file mode 100644
index 3b0dd682..00000000
--- a/res/layout/share.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/main"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:padding="5dp" >
-
- <EditText
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:ems="10"
- android:hint="@string/share_title_hint"
- android:singleLine="true" />
-
- <EditText
- android:id="@+id/url"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignLeft="@+id/title"
- android:layout_alignParentRight="true"
- android:layout_below="@+id/title"
- android:ems="10"
- android:hint="@string/share_url_hint"
- android:singleLine="true" />
-
-
- <EditText
- android:id="@+id/content"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignRight="@+id/url"
- android:layout_below="@+id/url"
- android:ems="10"
- android:hint="@string/share_content_hint"
- android:inputType="textMultiLine"
- android:maxLines="3" >
-
- <requestFocus />
- </EditText>
-
-
- <Button
- android:id="@+id/share_button"
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignRight="@+id/content"
- android:layout_below="@+id/content"
- android:text="@string/share_share_button" />
-
-</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/subscribe.xml b/res/layout/subscribe.xml
deleted file mode 100644
index 3b61424a..00000000
--- a/res/layout/subscribe.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/main"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:padding="5dp" >
-
- <EditText
- android:id="@+id/feed_url"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:ems="10"
- android:hint="@string/feed_url"
- android:inputType="textUri"
- android:maxLines="3" >
-
- <requestFocus />
- </EditText>
-
- <Spinner
- android:id="@+id/category_spinner"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignLeft="@+id/feed_url"
- android:layout_alignParentRight="true"
- android:layout_below="@+id/feed_url" />
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignLeft="@+id/category_spinner"
- android:layout_alignRight="@+id/category_spinner"
- android:layout_below="@+id/category_spinner" >
-
- <Button
- android:id="@+id/cats_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0.5"
- android:text="Update categories" />
-
- <Button
- android:id="@+id/subscribe_button"
- android:layout_width="wrap_content"
- android:layout_weight="0.5"
- android:layout_height="wrap_content"
- android:text="@string/subscribe_to_feed" />
- </LinearLayout>
-
-</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/tasker_settings.xml b/res/layout/tasker_settings.xml
deleted file mode 100644
index b50f3c3c..00000000
--- a/res/layout/tasker_settings.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/main"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:padding="5dp" >
-
- <Button
- android:id="@+id/close_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:text="@string/tasker_save_and_close" />
-
- <RadioGroup
- android:id="@+id/taskerActions"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true" >
-
- <RadioButton
- android:id="@+id/actionDownload"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:checked="true"
- android:text="@string/download_articles_and_go_offline" />
-
- <RadioButton
- android:id="@+id/actionUpload"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/synchronize_read_articles_and_go_online" />
- </RadioGroup>
-
-</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/widget_small.xml b/res/layout/widget_small.xml
deleted file mode 100644
index 552625c0..00000000
--- a/res/layout/widget_small.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/widget_main"
- android:layout_width="match_parent"
- android:layout_height="fill_parent" >
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <ImageView
- android:id="@+id/imageView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:paddingTop="2dp"
- android:src="@drawable/icon" />
-
- <TextView
- android:id="@+id/counter"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:gravity="center"
- android:text="-1"
- android:shadowColor="#cc000000"
- android:shadowDx="0"
- android:shadowDy="3"
- android:shadowRadius="3"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="@android:color/primary_text_dark" />
-
- </LinearLayout>
-
- <ProgressBar
- android:id="@+id/progress"
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone" />
-
-</FrameLayout> \ No newline at end of file