2012-04-12 15:26:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-10-23 14:56:10 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-05 11:16:53 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-10-23 14:56:10 +02:00
|
|
|
android:paddingLeft="4dp" >
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/vStatusLabel"
|
|
|
|
android:layout_width="5dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/status_unread"
|
|
|
|
android:visibility="invisible" />
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingLeft="4dp" >
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvItemname"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_toLeftOf="@+id/butAction"
|
2013-01-19 23:38:41 +01:00
|
|
|
android:textSize="@dimen/text_size_medium" />
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvFeedname"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/txtvItemname"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_toLeftOf="@id/butAction"
|
|
|
|
android:visibility="gone" />
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvPublished"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/txtvFeedname"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:layout_toLeftOf="@id/butAction"
|
2013-01-20 00:02:29 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary" />
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgvType"
|
|
|
|
android:layout_width="@dimen/enc_icons_size"
|
|
|
|
android:layout_height="@dimen/enc_icons_size"
|
|
|
|
android:layout_below="@id/txtvPublished"
|
|
|
|
android:layout_toLeftOf="@+id/imgvInPlaylist" />
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@id/imgvInPlaylist"
|
|
|
|
android:layout_width="@dimen/enc_icons_size"
|
|
|
|
android:layout_height="@dimen/enc_icons_size"
|
|
|
|
android:layout_below="@id/txtvPublished"
|
|
|
|
android:layout_toLeftOf="@+id/imgvDownloaded"
|
2012-11-20 19:26:41 +01:00
|
|
|
android:src="?attr/stat_playlist"
|
2012-10-23 14:56:10 +02:00
|
|
|
android:visibility="visible" />
|
2012-10-22 15:28:46 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@id/imgvDownloaded"
|
|
|
|
android:layout_width="@dimen/enc_icons_size"
|
|
|
|
android:layout_height="@dimen/enc_icons_size"
|
|
|
|
android:layout_below="@id/txtvPublished"
|
|
|
|
android:layout_toLeftOf="@+id/imgvDownloading"
|
2012-11-20 19:26:41 +01:00
|
|
|
android:src="?attr/av_download"
|
2012-10-23 14:56:10 +02:00
|
|
|
android:visibility="visible" />
|
2012-06-23 12:36:04 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@id/imgvDownloading"
|
|
|
|
android:layout_width="@dimen/enc_icons_size"
|
|
|
|
android:layout_height="@dimen/enc_icons_size"
|
|
|
|
android:layout_below="@id/txtvPublished"
|
|
|
|
android:layout_toLeftOf="@id/butAction"
|
2012-11-20 19:26:41 +01:00
|
|
|
android:src="?attr/navigation_refresh"
|
2012-10-23 14:56:10 +02:00
|
|
|
android:visibility="visible" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvLenSize"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@id/txtvPublished"
|
|
|
|
android:maxLines="2" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@id/butAction"
|
2013-01-20 23:22:11 +01:00
|
|
|
android:layout_width="48dp"
|
2013-01-20 23:33:44 +01:00
|
|
|
android:layout_height="match_parent"
|
2012-10-23 14:56:10 +02:00
|
|
|
android:layout_alignParentRight="true"
|
2013-01-20 23:22:11 +01:00
|
|
|
android:layout_alignParentBottom="true"
|
2012-11-23 18:44:15 +01:00
|
|
|
android:background="?attr/borderless_button"
|
2012-10-23 14:56:10 +02:00
|
|
|
android:clickable="false"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"
|
2013-01-20 23:22:11 +01:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="16dp"
|
2013-01-20 23:33:44 +01:00
|
|
|
android:scaleType="fitEnd"
|
2013-01-20 23:22:11 +01:00
|
|
|
android:src="?attr/spinner_button" />
|
2012-10-23 14:56:10 +02:00
|
|
|
</RelativeLayout>
|
2012-06-23 12:36:04 +02:00
|
|
|
|
2012-10-23 14:56:10 +02:00
|
|
|
</LinearLayout>
|