2013-03-19 14:44:11 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/headlines_row"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:background="?headlineSelectedBackground"
|
|
|
|
android:orientation="vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:paddingLeft="0dp"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:paddingTop="6dp" >
|
2013-03-19 14:44:11 +04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout6"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-15 14:13:21 +04:00
|
|
|
android:gravity="center_vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="6dp" >
|
2013-03-19 14:44:11 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2013-03-19 14:44:11 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="false"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:text="Sample entry title"
|
2013-05-27 23:11:17 +04:00
|
|
|
android:textColor="?headlineSelectedTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="16sp"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
2013-03-30 19:30:47 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/selected"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:focusable="false" />
|
2013-03-30 19:30:47 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/feed_title"
|
|
|
|
android:layout_width="wrap_content"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:text="Example Feed"
|
2013-05-27 23:11:17 +04:00
|
|
|
android:textColor="?headlineSelectedSecondaryTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="12sp" />
|
2013-05-12 18:35:40 +04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:layout_weight="1"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:gravity="right|center_vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:text="Jan 01, 12:00"
|
2013-05-27 23:11:17 +04:00
|
|
|
android:textColor="?headlineSelectedSecondaryTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="12sp" />
|
2013-05-12 18:35:40 +04:00
|
|
|
</LinearLayout>
|
2013-03-19 14:44:11 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/excerpt"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingLeft="6dp"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
|
2013-05-12 18:35:40 +04:00
|
|
|
android:textColor="?headlineSelectedExcerptTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="13sp" />
|
2013-03-19 14:44:11 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:paddingLeft="6dp" >
|
2013-03-19 14:44:11 +04:00
|
|
|
|
2013-05-12 18:35:40 +04: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"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:text="by Author"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:textColor="?headlineSelectedSecondaryTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="12sp" />
|
2013-05-12 18:35:40 +04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/marked"
|
2013-03-19 14:44:11 +04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:clickable="true"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:src="@android:drawable/star_off" />
|
2013-03-19 14:44:11 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/published"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:clickable="true"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:src="@drawable/ic_rss_bw" />
|
2013-03-19 14:44:11 +04:00
|
|
|
|
2013-05-18 13:19:16 +04: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"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:paddingLeft="10dp"
|
2013-05-18 13:19:16 +04:00
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:src="@drawable/ic_mailbox_collapsed_holo_light" />
|
2013-03-19 14:44:11 +04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|