summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-12 22:27:34 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-12 22:27:34 +0200
commit1ae00a0f2531fdb05a44877dda88ee2300e3ffec (patch)
treeb957f110a51f9a8e45c8507a47faf6aa778c1341 /res
parentbf1d4cb2488a194fe3cf60cad5fde62a29688d65 (diff)
downloadAntennaPod-1ae00a0f2531fdb05a44877dda88ee2300e3ffec.zip
Improved layout and behaviour of itemview
Diffstat (limited to 'res')
-rw-r--r--res/layout/feeditemview.xml46
1 files changed, 24 insertions, 22 deletions
diff --git a/res/layout/feeditemview.xml b/res/layout/feeditemview.xml
index c16cd5762..b54665d90 100644
--- a/res/layout/feeditemview.xml
+++ b/res/layout/feeditemview.xml
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
@@ -13,29 +12,32 @@
android:id="@+id/txtvItemname"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:textSize="16dp" />
+ android:layout_margin="8dp"
+ android:textSize="18dp" />
<TextView
android:id="@+id/txtvPublished"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:textStyle="italic"
- android:textColor="@color/gray" />
- </LinearLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:background="@color/gray"
- android:textColor="@color/white"
- android:textStyle="bold"
- android:gravity="center_horizontal"
- android:text="@string/description_label"/>
+ android:layout_marginBottom="8dp"
+ android:layout_marginLeft="8dp"
+ android:layout_marginRight="8dp"
+ android:textColor="@color/gray"
+ android:textStyle="italic" />
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:layout_marginBottom="8dp"
+ android:layout_marginLeft="8dp"
+ android:layout_marginRight="8dp"
+ android:background="@color/ics_gray" />
- <FrameLayout
- android:id="@+id/description_fragment"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- </FrameLayout>
+ <FrameLayout
+ android:id="@+id/description_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+ </FrameLayout>
+ </LinearLayout>
-</LinearLayout> \ No newline at end of file
+</ScrollView> \ No newline at end of file