summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-22 14:30:31 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-22 14:30:31 +0200
commit55f33875a4ac30bcfebbc703ed101f37f4f76cfe (patch)
tree36981f296a49a1a098852f94130425ceb25619e1 /res/layout
parent426df3f49f4c2a6f7b2a5dd44fb84c5240ebc87e (diff)
downloadAntennaPod-55f33875a4ac30bcfebbc703ed101f37f4f76cfe.zip
Removed unused code from Itemview
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/feeditemview.xml80
1 files changed, 26 insertions, 54 deletions
diff --git a/res/layout/feeditemview.xml b/res/layout/feeditemview.xml
index 7b151d4c2..794355be2 100644
--- a/res/layout/feeditemview.xml
+++ b/res/layout/feeditemview.xml
@@ -1,56 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="fill_parent"
- 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_width="wrap_content"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <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>
- </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_weight="1"
- android:layout_width="0px"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/butDownload"
- android:text="@string/download_label"
- android:layout_weight="1"
- android:layout_width="0px"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/butRemove"
- android:text="@string/remove_label"
- android:layout_weight="1"
- android:layout_width="0px"
- android:layout_height="wrap_content"/>
- </LinearLayout>
- <WebView
- android:id="@+id/webvDescription"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"/>
-</LinearLayout>
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
+
+ <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>
+
+ <WebView
+ android:id="@+id/webvDescription"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+</LinearLayout> \ No newline at end of file