136 lines
4.8 KiB
XML
136 lines
4.8 KiB
XML
<?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"
|
|
android:background="?headlineSelectedBackground"
|
|
android:orientation="vertical"
|
|
android:paddingRight="6dp" >
|
|
|
|
<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"
|
|
android:paddingLeft="0dp"
|
|
android:paddingRight="0dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:singleLine="false"
|
|
android:text="{Title...}"
|
|
android:textColor="?headlineSelectedTextColor"
|
|
android:textSize="18sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<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" >
|
|
|
|
<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="?headlineSelectedSecondaryTextColor"
|
|
android:textSize="13sp"
|
|
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:paddingRight="12dp"
|
|
android:text="Jan 01"
|
|
android:textColor="?headlineSelectedSecondaryTextColor"
|
|
android:textSize="13sp"
|
|
android:textStyle="italic" />
|
|
|
|
</LinearLayout>
|
|
|
|
<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="?headlineSelectedExcerptTextColor"
|
|
android:textSize="16sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="6dp"
|
|
android:paddingRight="0dp"
|
|
android:paddingTop="0dp" >
|
|
|
|
<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="?headlineSelectedSecondaryTextColor"
|
|
android:textSize="13sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/marked"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:clickable="true"
|
|
android:paddingRight="6dp"
|
|
android:src="@android:drawable/star_off" />
|
|
|
|
<ImageView
|
|
android:id="@+id/published"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:clickable="true"
|
|
android:src="@drawable/ic_rss_bw" />
|
|
|
|
<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" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |