2011-09-08 11:28:38 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:id="@+id/feeds_row"
|
|
|
|
android:layout_width="match_parent"
|
2015-06-04 11:27:41 +00:00
|
|
|
android:layout_height="wrap_content"
|
2013-05-18 09:57:25 +00:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2014-11-01 08:11:23 +00:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:baselineAligned="true"
|
2011-09-08 11:28:38 +00:00
|
|
|
android:gravity="center_vertical"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:orientation="horizontal">
|
2011-11-28 11:25:55 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-06-01 13:30:23 +00:00
|
|
|
android:layout_width="21dp"
|
|
|
|
android:layout_height="21dp"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:layout_weight="0"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:scaleType="fitXY"
|
2015-06-01 13:30:23 +00:00
|
|
|
android:src="?ic_rss_box" />
|
2011-11-28 11:25:55 +00:00
|
|
|
|
2013-03-20 15:18:31 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2015-02-11 12:54:04 +00:00
|
|
|
android:fontFamily="sans-serif-medium"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:layout_width="wrap_content"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:gravity="center_vertical"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:layout_weight="1"
|
2013-10-24 18:40:00 +00:00
|
|
|
android:ellipsize="end"
|
2015-06-01 17:30:38 +00:00
|
|
|
android:paddingLeft="35dp"
|
2013-05-28 10:50:03 +00:00
|
|
|
android:singleLine="true"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:text="Feed"
|
|
|
|
android:paddingBottom="2dp"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:textColor="?feedlistTextColor"
|
2015-02-11 12:54:04 +00:00
|
|
|
android:textSize="14sp" />
|
2013-03-20 15:18:31 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/unread_counter"
|
2015-02-11 12:54:04 +00:00
|
|
|
android:fontFamily="sans-serif-medium"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:layout_width="wrap_content"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2013-05-27 18:48:31 +00:00
|
|
|
android:singleLine="true"
|
|
|
|
android:text="3200"
|
2014-11-03 07:47:54 +00:00
|
|
|
android:layout_marginLeft="16dp"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:textColor="?unreadCounterColor"
|
2015-02-11 12:54:04 +00:00
|
|
|
android:textSize="14sp" />
|
2013-03-20 15:18:31 +00:00
|
|
|
|
2013-05-18 09:57:25 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/feed_menu_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2013-10-24 18:40:00 +00:00
|
|
|
android:background="@null"
|
2013-10-15 15:46:51 +00:00
|
|
|
android:paddingLeft="8dp"
|
2014-11-01 08:02:01 +00:00
|
|
|
android:visibility="gone"
|
2013-09-09 09:34:53 +00:00
|
|
|
android:src="@drawable/ic_action_overflow" />
|
2013-05-18 09:57:25 +00:00
|
|
|
|
2011-09-08 11:28:38 +00:00
|
|
|
</LinearLayout>
|