2011-09-09 13:50:15 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-09-08 20:33:46 +04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-09-09 13:34:53 +04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2011-11-30 16:05:03 +03:00
|
|
|
android:id="@+id/headlines_row"
|
2011-09-09 13:50:15 +04:00
|
|
|
android:layout_width="fill_parent"
|
2011-11-30 16:05:03 +03:00
|
|
|
android:layout_height="wrap_content"
|
2013-09-09 12:21:11 +04:00
|
|
|
android:paddingBottom="3dp"
|
2013-09-08 20:33:46 +04:00
|
|
|
android:paddingLeft="6dp"
|
2013-09-09 12:21:11 +04:00
|
|
|
android:paddingRight="6dp"
|
2013-09-09 13:34:53 +04:00
|
|
|
android:paddingTop="3dp"
|
|
|
|
tools:ignore="HardcodedText" >
|
2011-11-30 16:05:03 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
2013-09-08 20:33:46 +04:00
|
|
|
android:id="@+id/inner_row"
|
2011-11-30 16:05:03 +03:00
|
|
|
android:layout_width="match_parent"
|
2013-09-08 20:33:46 +04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?headlineNormalBackground"
|
|
|
|
android:orientation="vertical"
|
2013-09-09 13:34:53 +04:00
|
|
|
android:paddingBottom="2dp"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:paddingTop="6dp" >
|
2013-02-24 00:42:34 +04:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout6"
|
2011-11-30 16:05:03 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:gravity="center_vertical"
|
2013-09-09 12:42:27 +04:00
|
|
|
android:orientation="horizontal" >
|
2013-05-23 15:59:05 +04:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="false"
|
2013-10-18 00:53:18 +04:00
|
|
|
android:text="Sample entry title"
|
2013-09-08 20:33:46 +04:00
|
|
|
android:textColor="?headlineTextColor"
|
2013-10-16 15:01:41 +04:00
|
|
|
android:textSize="18sp" />
|
2013-09-08 20:33:46 +04:00
|
|
|
</LinearLayout>
|
2011-11-27 15:47:38 +03:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout1"
|
|
|
|
android:layout_width="match_parent"
|
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:gravity="center_vertical"
|
2013-09-09 12:42:27 +04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="3dp" >
|
2013-03-30 19:30:47 +04:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/feed_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="Example Feed"
|
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
2012-06-20 14:16:24 +04:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="right|center_vertical"
|
|
|
|
android:text="Jan 01, 12:00"
|
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
</LinearLayout>
|
2013-02-24 00:42:34 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<TextView
|
2013-09-08 20:33:46 +04:00
|
|
|
android:id="@+id/excerpt"
|
|
|
|
android:layout_width="match_parent"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:layout_height="match_parent"
|
2013-09-09 12:42:27 +04:00
|
|
|
android:paddingTop="3dp"
|
2013-09-08 20:33:46 +04:00
|
|
|
android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
|
|
|
|
android:textColor="?headlineExcerptTextColor"
|
|
|
|
android:textSize="13sp" />
|
2013-02-24 00:42:34 +04:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2012-12-31 14:01:59 +04:00
|
|
|
android:layout_height="wrap_content"
|
2013-09-09 12:42:27 +04:00
|
|
|
android:gravity="center_vertical" >
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/selected"
|
|
|
|
android:layout_width="wrap_content"
|
2013-10-15 20:05:17 +04:00
|
|
|
android:layout_height="wrap_content"
|
2013-09-09 12:42:27 +04:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:focusable="false" />
|
2011-11-27 15:47:38 +03:00
|
|
|
|
2013-09-08 20:33:46 +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"
|
|
|
|
android:text="by Author"
|
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
|
|
|
android:textSize="12sp" />
|
2011-11-30 16:05:03 +03:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/marked"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-15 19:46:51 +04:00
|
|
|
android:layout_marginRight="8dp"
|
2013-09-08 20:33:46 +04:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:clickable="true"
|
2013-10-15 19:34:45 +04:00
|
|
|
android:src="@drawable/ic_star_empty" />
|
2013-09-08 20:33:46 +04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/published"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-15 19:46:51 +04:00
|
|
|
android:layout_marginRight="6dp"
|
2013-09-08 20:33:46 +04:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:clickable="true"
|
2013-10-15 19:46:51 +04:00
|
|
|
android:src="@drawable/ic_unpublished" />
|
2013-09-08 20:33:46 +04:00
|
|
|
|
2013-09-09 13:34:53 +04:00
|
|
|
<ImageView
|
2013-09-08 20:33:46 +04:00
|
|
|
android:id="@+id/article_menu_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2013-10-15 19:46:51 +04:00
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="6dp"
|
2013-09-09 13:34:53 +04:00
|
|
|
android:src="@drawable/ic_action_overflow" />
|
2013-09-08 20:33:46 +04:00
|
|
|
</LinearLayout>
|
2011-11-24 13:01:51 +03:00
|
|
|
</LinearLayout>
|
2011-11-30 16:05:03 +03:00
|
|
|
|
2013-09-08 20:33:46 +04:00
|
|
|
</FrameLayout>
|