summaryrefslogtreecommitdiff
path: root/res/layout/feeds_row.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-09-08 15:28:38 +0400
committerAndrew Dolgov <[email protected]>2011-09-08 15:28:38 +0400
commita14e9cd14e3d9490a6c4680e54bcd7d691bf548b (patch)
treefc0b60387557aa0295b2b9927d32092d501a9336 /res/layout/feeds_row.xml
parenta04f7480142a787e22fb4e152aae566bf0c43f29 (diff)
implement fetching of feeds
Diffstat (limited to 'res/layout/feeds_row.xml')
-rw-r--r--res/layout/feeds_row.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/res/layout/feeds_row.xml b/res/layout/feeds_row.xml
new file mode 100644
index 00000000..81c58b46
--- /dev/null
+++ b/res/layout/feeds_row.xml
@@ -0,0 +1,27 @@
+<?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="?android:attr/listPreferredItemHeight"
+ android:orientation="horizontal"
+ android:gravity="center_vertical"
+ android:padding="6dip" android:id="@+id/feeds_row">
+ <TextView
+ android:id="@+id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:layout_gravity="center_vertical"
+ android:paddingLeft="16dp"
+ android:text="{FEED}" android:textSize="16sp"/>
+ <TextView
+ android:id="@+id/unread_counter"
+ android:gravity="right"
+ android:textSize="12sp"
+ android:textStyle="bold"
+ android:textColor="?unreadCounterColor"
+ android:layout_gravity="center_vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="{123}"/>
+
+</LinearLayout> \ No newline at end of file