2011-11-24 10:01:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-11-30 13:05:03 +00:00
|
|
|
android:id="@+id/headlines_row"
|
2011-11-24 10:01:51 +00:00
|
|
|
android:layout_width="fill_parent"
|
2011-11-30 13:05:03 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-11-24 11:51:23 +00:00
|
|
|
android:background="?headlineUnreadBackground"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingRight="6dp" >
|
2013-02-23 20:42:34 +00:00
|
|
|
|
2011-11-30 13:05:03 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout6"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/selected"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusable="false"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:paddingLeft="0dp"
|
|
|
|
android:paddingRight="0dp" />
|
2013-02-23 20:42:34 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2011-11-30 13:05:03 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:text="{Title...}"
|
|
|
|
android:textColor="?headlineUnreadTextColor"
|
2013-05-12 14:52:25 +00:00
|
|
|
android:textSize="18sp"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:textStyle="bold" />
|
2013-02-23 20:42:34 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
</LinearLayout>
|
2013-03-30 15:30:47 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingTop="6dp" >
|
2013-03-30 15:30:47 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/feed_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="0.25"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="{Feed title...}"
|
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2013-05-12 14:52:25 +00:00
|
|
|
android:textSize="13sp"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:textStyle="italic" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0.5"
|
|
|
|
android:gravity="right|center_vertical"
|
|
|
|
android:text="Jan 01"
|
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2013-05-12 14:52:25 +00:00
|
|
|
android:textSize="13sp"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:textStyle="italic" />
|
2012-06-20 10:16:24 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
</LinearLayout>
|
2013-02-23 20:42:34 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/excerpt"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="0dp"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:text="{Content excerpt...}"
|
|
|
|
android:textColor="?headlineExcerptTextColor"
|
2013-05-12 14:52:25 +00:00
|
|
|
android:textSize="16sp" />
|
2012-12-31 10:01:59 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="0dp"
|
|
|
|
android:paddingTop="0dp" >
|
2013-02-23 20:42:34 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/author"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="{Author}"
|
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2013-05-12 14:52:25 +00:00
|
|
|
android:textSize="13sp" />
|
2013-05-12 14:35:40 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/marked"
|
2012-12-31 10:01:59 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:clickable="true"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:src="@android:drawable/star_off" />
|
2011-11-27 12:47:38 +00:00
|
|
|
|
2013-05-12 14:35:40 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/published"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2013-05-18 09:19:16 +00:00
|
|
|
android:clickable="true"
|
2013-05-12 14:35:40 +00:00
|
|
|
android:src="@drawable/ic_rss_bw" />
|
2011-11-30 13:05:03 +00:00
|
|
|
|
2013-05-18 09:19:16 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/article_menu_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="@null"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:src="@drawable/ic_mailbox_collapsed_holo_light" />
|
|
|
|
|
2011-11-24 10:01:51 +00:00
|
|
|
</LinearLayout>
|
2011-11-30 13:05:03 +00:00
|
|
|
|
2011-11-24 10:01:51 +00:00
|
|
|
</LinearLayout>
|