summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-29 15:43:28 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-29 15:43:28 +0200
commit328172332698301baa556db53748ad26dc3571bb (patch)
treeb8707d348ef556c68170d2b7dbd2878203e5d192 /res
parentf564c9a6e2d0add73856970be0876b2325432307 (diff)
downloadAntennaPod-328172332698301baa556db53748ad26dc3571bb.zip
- Bugfix : Player did not always display the current chapter correctly.
- Added support for links in SimpleChapters
Diffstat (limited to 'res')
-rw-r--r--res/layout/simplechapter_item.xml18
1 files changed, 16 insertions, 2 deletions
diff --git a/res/layout/simplechapter_item.xml b/res/layout/simplechapter_item.xml
index 750f4507b..6a2a6bef8 100644
--- a/res/layout/simplechapter_item.xml
+++ b/res/layout/simplechapter_item.xml
@@ -1,7 +1,8 @@
<?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="48dp" >
+ android:layout_height="wrap_content"
+ android:paddingBottom="8dp" >
<TextView
android:id="@+id/txtvStart"
@@ -17,9 +18,22 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
+ android:layout_alignParentTop="true"
android:layout_margin="8dp"
android:layout_toLeftOf="@id/txtvStart"
android:textStyle="bold" />
+ <TextView
+ android:id="@+id/txtvLink"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_below="@id/txtvTitle"
+ android:layout_marginLeft="8dp"
+ android:layout_marginRight="8dp"
+ android:layout_toLeftOf="@id/txtvStart"
+ android:focusable="false"
+ android:focusableInTouchMode="false"
+ android:maxLines="2" />
+
</RelativeLayout> \ No newline at end of file