2011-09-08 15:28:38 +04: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 23:18:18 +03: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 14:25:55 +03:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2011-11-29 08:30:43 +03:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
|
|
|
android:scaleType="fitXY"
|
2011-11-28 14:25:55 +03:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:src="@drawable/ic_rss_bw" />
|
|
|
|
|
2011-09-08 15:28:38 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2011-09-08 20:05:00 +04:00
|
|
|
android:layout_gravity="center_vertical"
|
2012-01-17 14:16:59 +03:00
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:textColor="?feedlistTextColor"
|
2011-11-28 14:25:55 +03:00
|
|
|
android:text="{FEED}" android:layout_width="0dp" android:textSize="18dip"/>
|
2011-09-08 15:28:38 +04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/unread_counter"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textStyle="bold"
|
2012-06-22 12:21:32 +04:00
|
|
|
android:paddingRight="12dip"
|
2011-09-08 15:28:38 +04:00
|
|
|
android:textColor="?unreadCounterColor"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
2011-11-28 14:25:55 +03:00
|
|
|
android:layout_weight="0"
|
2011-09-08 15:28:38 +04:00
|
|
|
android:layout_height="wrap_content"
|
2011-11-28 14:25:55 +03:00
|
|
|
android:text="{123}" android:textSize="13sp"/>
|
2011-09-08 15:28:38 +04:00
|
|
|
|
|
|
|
</LinearLayout>
|