2011-11-24 10:01:51 +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"
|
2011-11-24 10:01:51 +00:00
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
2012-06-22 08:21:32 +00:00
|
|
|
android:background="?feedsSelectedBackgroundSolid"
|
2011-11-24 10:01:51 +00:00
|
|
|
android:gravity="center_vertical"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="10dip"
|
|
|
|
android:paddingLeft="8dip"
|
|
|
|
android:paddingRight="8dip"
|
|
|
|
android:paddingTop="10dip" >
|
2011-11-28 11:25:55 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="20dp"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:layout_weight="0"
|
2013-03-20 15:18:31 +00:00
|
|
|
android:scaleType="fitXY"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:src="@drawable/ic_rss_bw" />
|
|
|
|
|
2013-03-20 15:18:31 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:text="{FEED}"
|
|
|
|
android:textColor="?feedlistSelectedTextColor"
|
|
|
|
android:textSize="18dip" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/unread_counter"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:gravity="right"
|
|
|
|
android:paddingRight="8dip"
|
|
|
|
android:text="{123}"
|
|
|
|
android:textColor="?unreadCounterColor"
|
|
|
|
android:textSize="13sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2011-11-24 10:01:51 +00:00
|
|
|
</LinearLayout>
|