2011-09-09 13:50:15 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
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"
|
2011-11-26 11:17:38 +03:00
|
|
|
android:background="?headlineNormalBackground"
|
2013-05-12 18:35:40 +04:00
|
|
|
android:orientation="vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:paddingLeft="0dp"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:paddingTop="6dp" >
|
2011-11-30 16:05:03 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout6"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="6dp" >
|
2013-02-24 00:42:34 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2011-11-30 16:05:03 +03: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-12 18:35:40 +04:00
|
|
|
android:textColor="?headlineTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="16sp" />
|
2013-05-12 18:35:40 +04:00
|
|
|
</LinearLayout>
|
2013-04-26 12:45:27 +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" />
|
2011-11-27 15:47:38 +03: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-12 18:35:40 +04:00
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="12sp" />
|
2013-03-30 19:30:47 +04:00
|
|
|
|
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-12 18:35:40 +04:00
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="12sp" />
|
2013-05-12 18:35:40 +04:00
|
|
|
</LinearLayout>
|
2013-03-30 19:30:47 +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="?headlineExcerptTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="13sp" />
|
2012-06-20 14:16:24 +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-02-24 00:42:34 +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="?headlineSecondaryTextColor"
|
2013-05-23 15:59:05 +04:00
|
|
|
android:textSize="12sp" />
|
2013-02-24 00:42:34 +04:00
|
|
|
|
2013-05-12 18:35:40 +04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/marked"
|
2012-12-31 14:01:59 +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" />
|
2011-11-27 15:47:38 +03: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" />
|
2011-11-30 16:05:03 +03: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" />
|
2011-11-24 13:01:51 +03:00
|
|
|
</LinearLayout>
|
2011-11-30 16:05:03 +03:00
|
|
|
|
2011-09-09 13:50:15 +04:00
|
|
|
</LinearLayout>
|