summaryrefslogtreecommitdiff
path: root/res/layout/headlines_row.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-09-09 13:50:15 +0400
committerAndrew Dolgov <[email protected]>2011-09-09 13:50:15 +0400
commit23e390d2cfc4b49fe6b158e5cd5f15797977f9f9 (patch)
treeab4369e118783f5c8695fb9757d7d4d07bcb95fa /res/layout/headlines_row.xml
parent7393ab7631bfe138263ea8ffe2be4e012908d6c9 (diff)
implement basic headline loading
Diffstat (limited to 'res/layout/headlines_row.xml')
-rw-r--r--res/layout/headlines_row.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/res/layout/headlines_row.xml b/res/layout/headlines_row.xml
new file mode 100644
index 00000000..668fcd24
--- /dev/null
+++ b/res/layout/headlines_row.xml
@@ -0,0 +1,13 @@
+<?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:gravity="center_vertical"
+ android:padding="3dip" android:id="@+id/headlines_row" android:orientation="horizontal">
+ <CheckBox android:paddingLeft="6dip" android:paddingRight="6dip" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/selected"></CheckBox>
+ <LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout1" android:orientation="vertical" android:layout_width="match_parent">
+ <TextView android:id="@+id/title" android:textSize="16sp" android:layout_height="wrap_content" android:text="{Title...}" android:layout_width="match_parent"></TextView>
+ <TextView android:id="@+id/excerpt" android:textSize="13sp" android:layout_height="wrap_content" android:textColor="#909090" android:text="{Content excerpt...}" android:layout_width="match_parent"></TextView>
+ </LinearLayout>
+
+</LinearLayout> \ No newline at end of file