102 lines
3.7 KiB
XML
102 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<ImageView
|
|
android:id="@+id/imgvFeedimage"
|
|
android:layout_width="@dimen/thumbnail_length"
|
|
android:layout_height="@dimen/thumbnail_length"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_margin="8dp"
|
|
android:adjustViewBounds="true"
|
|
android:cropToPadding="true"
|
|
android:scaleType="fitXY" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lEpisodeCounts"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_alignRight="@id/imgvFeedimage"
|
|
android:layout_below="@id/imgvFeedimage"
|
|
android:layout_centerVertical="true"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lNewStatusLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtvNewEps"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginRight="4dip"
|
|
android:textSize="@dimen/text_size_large"
|
|
android:textStyle="bold" />
|
|
|
|
<View
|
|
android:layout_width="5dip"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/status_unread"
|
|
android:visibility="visible" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lProgressStatusLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtvProgressEps"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginRight="4dip"
|
|
android:textSize="@dimen/text_size_large"
|
|
android:textStyle="bold" />
|
|
|
|
<View
|
|
android:layout_width="5dip"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/status_progress"
|
|
android:visibility="visible" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@id/imgvFeedimage"
|
|
android:layout_below="@id/imgvFeedimage"
|
|
android:layout_toLeftOf="@id/lEpisodeCounts"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtvFeedname"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:maxLines="2"
|
|
android:textSize="@dimen/text_size_medium"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtvLastUpdate"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:attr/textColorSecondary" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtvNumEpisodes"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:textColor="?android:attr/textColorSecondary" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |