summaryrefslogtreecommitdiff
path: root/res/layout/feeditemview.xml
diff options
context:
space:
mode:
authorDaniel Oeh <daniel@danielpc.(none)>2012-04-13 16:55:35 +0200
committerDaniel Oeh <daniel@danielpc.(none)>2012-04-13 16:55:35 +0200
commit654cff51c8e556de982051c2cdaace43501a487b (patch)
tree69574aef66aa9ca727013a03cddabf19314736f0 /res/layout/feeditemview.xml
parentd3859b6763abafad11af40e7c2b61355ad498447 (diff)
downloadAntennaPod-654cff51c8e556de982051c2cdaace43501a487b.zip
Modified layout
Diffstat (limited to 'res/layout/feeditemview.xml')
-rw-r--r--res/layout/feeditemview.xml58
1 files changed, 33 insertions, 25 deletions
diff --git a/res/layout/feeditemview.xml b/res/layout/feeditemview.xml
index d3149ba46..bca642542 100644
--- a/res/layout/feeditemview.xml
+++ b/res/layout/feeditemview.xml
@@ -3,39 +3,47 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
- <TextView
- android:id="@+id/txtvItemname"
+ <LinearLayout
android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
-
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
<ImageView
android:id="@+id/imgvFeedimage"
android:layout_height="90dip"
android:layout_width="90dip"
android:layout_alignParentLeft="true"/>
<LinearLayout
- android:layout_height="fill_parent"
android:layout_width="wrap_content"
- android:layout_alignParentRight="true"
+ android:layout_height="fill_parent"
android:orientation="vertical">
- <Button
- android:id="@+id/butPlay"
- android:text="@string/play_label"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/butDownload"
- android:text="@string/download_label"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/butRemove"
- android:text="@string/remove_label"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"/>
+ <TextView
+ android:id="@+id/txtvItemname"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+ <TextView
+ android:id="@+id/txtvPublished"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
</LinearLayout>
- </RelativeLayout>
+ </LinearLayout>
+ <LinearLayout
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:orientation="horizontal">
+ <Button
+ android:id="@+id/butPlay"
+ android:text="@string/play_label"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+ <Button
+ android:id="@+id/butDownload"
+ android:text="@string/download_label"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+ <Button
+ android:id="@+id/butRemove"
+ android:text="@string/remove_label"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+ </LinearLayout>
</LinearLayout>