summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-11-13 21:42:10 +0300
committerAndrew Dolgov <[email protected]>2014-11-13 21:42:10 +0300
commit89823f32f1e5fdac55e7dfc3487d6e2c99ff1cf1 (patch)
treeb241133fe24b21239d50816b7f0b33f078b08567 /org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml
parent4f6ac1ef0532407d2d09b4cd8c3fd39f67e0ec5f (diff)
implement compact headline mode
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml')
-rw-r--r--org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml120
1 files changed, 120 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml b/org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml
new file mode 100644
index 00000000..0a1bf830
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/layout/headlines_row_selected_unread_compact.xml
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:tools="http://schemas.android.com/tools"
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/headlines_row"
+ android:padding="8dp"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:background="?headlineSelectedBackground"
+ tools:ignore="HardcodedText" >
+
+ <CheckBox
+ android:id="@+id/selected"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="0"
+ android:layout_gravity="center"
+ android:focusable="false" />
+
+ <LinearLayout
+ android:layout_weight="1"
+ android:orientation="vertical"
+ android:layout_gravity="center"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_vertical"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:text="Sample entry title"
+ android:textColor="?headlineSelectedTextColor"
+ android:textStyle="bold"
+ android:textSize="18sp"
+ android:layout_span="2" />
+
+ <TextView
+ android:id="@+id/excerpt"
+ android:singleLine="true"
+ android:ellipsize="end"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ 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"
+ android:layout_span="2" />
+
+ <LinearLayout
+ android:paddingTop="2dp"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <TextView
+ android:id="@+id/feed_title"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:ellipsize="end"
+ android:fontFamily="sans-serif-light"
+ android:gravity="center_vertical"
+ android:singleLine="true"
+ android:text="Example Feed AAA AAA AAAAAA AAAA AAAAA AA A A AA AA"
+ android:textColor="?headlineSelectedSecondaryTextColor"
+ android:textSize="12sp"
+ android:layout_weight="0.5" />
+
+ </LinearLayout>
+
+ </LinearLayout>
+
+ <LinearLayout
+ android:id="@+id/headline_footer"
+ android:orientation="vertical"
+ android:layout_weight="0"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent">
+
+ <TextView
+ android:id="@+id/date"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:fontFamily="sans-serif-light"
+ android:singleLine="true"
+ android:ellipsize="none"
+ android:layout_weight="1"
+ android:text="Jan 01, 12:00, 1970"
+ android:textColor="?headlineSelectedSecondaryTextColor"
+ android:textSize="12sp"
+ />
+
+
+ <ImageView
+ android:id="@+id/marked"
+ android:layout_width="16dp"
+ android:layout_gravity="bottom|right"
+ android:layout_height="16dp"
+ android:layout_weight="0"
+ android:clickable="true"
+ android:src="@drawable/ic_star_empty" />
+
+
+
+ </LinearLayout>
+
+ <!-- <ImageView
+ android:id="@+id/article_menu_button"
+ android:layout_gravity="center"
+ android:layout_width="wrap_content"
+ android:layout_height="16dp"
+ android:layout_weight="0"
+ android:paddingLeft="4dp"
+ android:paddingRight="4dp"
+ android:src="@drawable/ic_action_overflow" /> -->
+
+
+</LinearLayout> \ No newline at end of file