diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2013-10-18 00:07:38 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2013-10-18 00:07:38 +0400 |
| commit | cc67716030f04c014b6a36be33318676c2f91872 (patch) | |
| tree | 2eff2922319317c41ec4a7de5b0eb719fc2685b9 /res/layout/headlines_row.xml | |
| parent | b5d4fac1413f0cb6cee261a8c9c69e6dc356a904 (diff) | |
bump version
add feedicon to headlines view on tablets
Diffstat (limited to 'res/layout/headlines_row.xml')
| -rw-r--r-- | res/layout/headlines_row.xml | 12 |
1 files changed, 11 insertions, 1 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
|