105 lines
4.0 KiB
XML
105 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="4dp" >
|
|
|
|
<View
|
|
android:id="@+id/vStatusLabel"
|
|
android:layout_width="5dip"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/status_unread"
|
|
android:visibility="invisible" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="0dip"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:paddingLeft="4dp" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtvItemname"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_toLeftOf="@+id/butAction"
|
|
android:textSize="@dimen/text_size_medium" />
|
|
|
|
<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" />
|
|
|
|
<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"
|
|
android:textColor="?android:attr/textColorSecondary" />
|
|
|
|
<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" />
|
|
|
|
<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"
|
|
android:src="?attr/stat_playlist"
|
|
android:visibility="visible" />
|
|
|
|
<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"
|
|
android:src="?attr/av_download"
|
|
android:visibility="visible" />
|
|
|
|
<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"
|
|
android:src="?attr/navigation_refresh"
|
|
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"
|
|
android:layout_width="48dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="?attr/borderless_button"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:focusableInTouchMode="false"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="16dp"
|
|
android:scaleType="fitEnd"
|
|
android:src="?attr/spinner_button" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |