summaryrefslogtreecommitdiff
path: root/res/layout/itemdescription_listitem.xml
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-09-05 15:24:50 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2013-09-05 15:24:50 +0200
commit02926a6e5ffa968d08efeae5012a0ecf41a6f33a (patch)
treef9cfef6a7569b82301ea1d1aa7066cefc7cd1146 /res/layout/itemdescription_listitem.xml
parent862b8db20b8003691b2a40693275c2390dd9a4e7 (diff)
parenteb7addaaf07e5ede3c1bc730b33aee6541c78290 (diff)
downloadAntennaPod-02926a6e5ffa968d08efeae5012a0ecf41a6f33a.zip
Merge branch 'gpoddernet' into develop
Conflicts: AndroidManifest.xml res/values/arrays.xml res/values/strings.xml res/xml/preferences.xml src/de/danoeh/antennapod/activity/PreferenceActivity.java
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