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"
|
|
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical"
|
2011-11-23 20:18:18 +00:00
|
|
|
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-09-08 11:28:38 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2011-09-08 16:05:00 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2012-01-17 11:16:59 +00:00
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:textColor="?feedlistTextColor"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:text="{FEED}" android:layout_width="0dp" android:textSize="18dip"/>
|
2011-09-08 11:28:38 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/unread_counter"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textStyle="bold"
|
2012-06-22 08:21:32 +00:00
|
|
|
android:paddingRight="12dip"
|
2011-09-08 11:28:38 +00:00
|
|
|
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-09-08 11:28:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-11-28 11:25:55 +00:00
|
|
|
android:text="{123}" android:textSize="13sp"/>
|
2011-09-08 11:28:38 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|