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"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:background="?feedsSelectedBackground"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:id="@+id/feeds_row" android:layout_width="match_parent" android:paddingBottom="4dip" android:paddingLeft="8dip" android:paddingRight="8dip" android:paddingTop="4dip">
|
2011-11-28 11:25:55 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2011-11-29 05:30:43 +00:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
|
2011-11-28 11:25:55 +00:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:src="@drawable/ic_rss_bw" />
|
|
|
|
|
2011-11-24 10:01:51 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:paddingLeft="6dip"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:text="{FEED}" android:layout_width="0dp" android:textSize="18dip"/>
|
2011-11-24 10:01:51 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/unread_counter"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:paddingRight="6dip"
|
|
|
|
android:textColor="?unreadCounterColor"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:layout_weight="0"
|
2011-11-24 10:01:51 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:text="{123}" android:textSize="13sp"/>
|
2011-11-24 10:01:51 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|