2011-09-09 09:50:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:gravity="center_vertical"
|
2011-11-24 10:01:51 +00:00
|
|
|
android:id="@+id/headlines_row" android:orientation="horizontal" android:layout_height="wrap_content">
|
|
|
|
<ImageView android:background="?feedsSelectedBackground" android:paddingRight="4dip" android:layout_height="match_parent" android:layout_width="wrap_content"></ImageView>
|
2011-09-09 11:58:11 +00:00
|
|
|
<CheckBox android:focusable="false"
|
2011-11-23 20:18:18 +00:00
|
|
|
android:paddingLeft="6dip" android:paddingRight="6dip" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/selected"></CheckBox>
|
2011-11-24 10:01:51 +00:00
|
|
|
<LinearLayout android:orientation="vertical" android:id="@+id/linearLayout1" android:layout_weight="1" android:layout_width="match_parent" android:layout_height="wrap_content">
|
|
|
|
<TextView android:singleLine="true" android:ellipsize="end" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/title" android:text="{Title...}" android:textSize="16sp"></TextView>
|
|
|
|
<TextView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/excerpt" android:text="{Content excerpt...}" android:textSize="13sp" android:textColor="#909090"></TextView>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linerLayout3"
|
|
|
|
android:layout_width="wrap_content" android:gravity="center"
|
|
|
|
android:layout_height="wrap_content" android:orientation="vertical">
|
|
|
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/date" android:text="Jan 01"></TextView>
|
|
|
|
<ImageView android:clickable="true" android:id="@+id/imageView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/star_off"></ImageView>
|
|
|
|
</LinearLayout>
|
2011-09-09 09:50:15 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|