summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/headlines_row.xml12
-rw-r--r--res/layout/headlines_row_selected.xml8
-rw-r--r--res/layout/headlines_row_selected_unread.xml8
-rw-r--r--res/layout/headlines_row_unread.xml21
4 files changed, 43 insertions, 6 deletions
diff --git a/res/layout/headlines_row.xml b/res/layout/headlines_row.xml
index 6df28379..009048d2 100644
--- a/res/layout/headlines_row.xml
+++ b/res/layout/headlines_row.xml
@@ -35,9 +35,19 @@
android:layout_weight="1"
android:gravity="center_vertical"
android:singleLine="false"
- android:text="Sample entry title"
+ android:text="Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit."
android:textColor="?headlineTextColor"
android:textSize="18sp" />
+
+ <ImageView
+ android:id="@+id/feed_icon"
+ android:layout_width="16dp"
+ android:layout_height="16dp"
+ android:scaleType="fitXY"
+ android:layout_weight="0"
+
+ android:src="@drawable/ic_published" />
+
</LinearLayout>
<LinearLayout
diff --git a/res/layout/headlines_row_selected.xml b/res/layout/headlines_row_selected.xml
index 849e2b6f..a4216ea8 100644
--- a/res/layout/headlines_row_selected.xml
+++ b/res/layout/headlines_row_selected.xml
@@ -36,6 +36,14 @@
android:text="Sample entry title"
android:textColor="?attr/headlineSelectedTextColor"
android:textSize="18sp" />
+
+ <ImageView
+ android:id="@+id/feed_icon"
+ android:layout_width="16dp"
+ android:layout_height="16dp"
+ android:scaleType="fitXY"
+ android:layout_weight="0"
+ android:src="@drawable/ic_published" />
</LinearLayout>
<LinearLayout
diff --git a/res/layout/headlines_row_selected_unread.xml b/res/layout/headlines_row_selected_unread.xml
index 0fa6e213..d6457e62 100644
--- a/res/layout/headlines_row_selected_unread.xml
+++ b/res/layout/headlines_row_selected_unread.xml
@@ -37,6 +37,14 @@
android:textColor="?headlineSelectedTextColor"
android:textSize="18sp"
android:textStyle="bold" />
+
+ <ImageView
+ android:id="@+id/feed_icon"
+ android:layout_width="16dp"
+ android:layout_height="16dp"
+ android:scaleType="fitXY"
+ android:layout_weight="0"
+ android:src="@drawable/ic_published" />
</LinearLayout>
<LinearLayout
diff --git a/res/layout/headlines_row_unread.xml b/res/layout/headlines_row_unread.xml
index 44f1c218..f493dce8 100644
--- a/res/layout/headlines_row_unread.xml
+++ b/res/layout/headlines_row_unread.xml
@@ -14,8 +14,11 @@
android:layout_height="match_parent"
android:background="?headlineUnreadBackground"
android:orientation="vertical"
- android:paddingTop="6dp" android:paddingLeft="6dp" android:paddingRight="6dp" android:paddingBottom="2dp" > >
-
+ android:paddingBottom="2dp"
+ android:paddingLeft="6dp"
+ android:paddingRight="6dp"
+ android:paddingTop="6dp" >
+
<LinearLayout
android:id="@+id/linearLayout6"
android:layout_width="match_parent"
@@ -34,6 +37,14 @@
android:textColor="?headlineUnreadTextColor"
android:textSize="18sp"
android:textStyle="bold" />
+
+ <ImageView
+ android:id="@+id/feed_icon"
+ android:layout_width="16dp"
+ android:layout_height="16dp"
+ android:scaleType="fitXY"
+ android:layout_weight="0"
+ android:src="@drawable/ic_published" />
</LinearLayout>
<LinearLayout
@@ -85,7 +96,7 @@
<CheckBox
android:id="@+id/selected"
android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ android:layout_height="wrap_content"
android:layout_weight="0"
android:focusable="false" />
@@ -105,18 +116,18 @@
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:layout_marginRight="8dp"
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:layout_marginRight="6dp"
android:src="@drawable/ic_unpublished" />
<ImageView