summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-01-23 19:38:26 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2013-01-23 19:38:26 +0100
commit65d413cbb892be1a457be07f03122b1bbb56a9c9 (patch)
tree4b72066d10e014457fd8947b7f94f5d721fa006b /res/layout
parent5221f5f5eca4176df26114b5da8ed59294b965fc (diff)
downloadAntennaPod-65d413cbb892be1a457be07f03122b1bbb56a9c9.zip
Created external feeditemlist adapters
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/external_itemlist_item.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/res/layout/external_itemlist_item.xml b/res/layout/external_itemlist_item.xml
new file mode 100644
index 000000000..b03113ed1
--- /dev/null
+++ b/res/layout/external_itemlist_item.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+ <ImageView
+ android:id="@+id/imgvFeedimage"
+ android:layout_width="@dimen/thumbnail_length"
+ android:layout_height="@dimen/thumbnail_length"
+ android:layout_alignParentLeft="true"
+ android:scaleType="centerCrop" />
+
+ <ImageButton
+ android:id="@+id/butAction"
+ android:layout_width="48dp"
+ android:layout_height="match_parent"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentRight="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" />
+
+ <TextView
+ android:id="@+id/txtvTitle"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_margin="8dp"
+ android:layout_toLeftOf="@id/butAction"
+ android:layout_toRightOf="@id/imgvFeedimage"
+ android:textColor="?android:attr/textColorPrimary"
+ android:textSize="@dimen/text_size_medium" />
+
+</RelativeLayout> \ No newline at end of file