summaryrefslogtreecommitdiff
path: root/res/layout/itemdescription_listitem.xml
diff options
context:
space:
mode:
authorTom Hennen <tom.hennen@gmail.com>2013-09-09 18:20:15 -0400
committerTom Hennen <tom.hennen@gmail.com>2013-09-09 18:20:15 -0400
commitc960a65189014fddbf7336c028385b350fdca504 (patch)
tree482ce1490a92d738b16aff8c9bec5ba189872a68 /res/layout/itemdescription_listitem.xml
parentd538e3899c65992870e1866b1d27fc7cd5385ce7 (diff)
parent02926a6e5ffa968d08efeae5012a0ecf41a6f33a (diff)
downloadAntennaPod-c960a65189014fddbf7336c028385b350fdca504.zip
Merge branch 'develop' of https://github.com/danieloeh/AntennaPod into pause-on-interrupt
Diffstat (limited to 'res/layout/itemdescription_listitem.xml')
-rw-r--r--res/layout/itemdescription_listitem.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/res/layout/itemdescription_listitem.xml b/res/layout/itemdescription_listitem.xml
new file mode 100644
index 000000000..d6a3f6a16
--- /dev/null
+++ b/res/layout/itemdescription_listitem.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <TextView
+ android:id="@+id/txtvTitle"
+ android:layout_margin="8dp"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:lines="1"
+ android:ellipsize="end"
+ android:textColor="?android:attr/textColorPrimary"
+ android:textSize="@dimen/text_size_small"/>
+
+ <TextView
+ android:id="@+id/txtvDescription"
+ android:layout_margin="8dp"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:lines="3"
+ android:ellipsize="end"
+ android:textColor="?android:attr/textColorTertiary"
+ android:textSize="@dimen/text_size_micro"/>
+</LinearLayout> \ No newline at end of file