summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorDaniel Oeh <daniel@danielpc.(none)>2012-05-29 13:26:14 +0200
committerDaniel Oeh <daniel@danielpc.(none)>2012-05-29 13:26:14 +0200
commit92c53bcf92c9be21df88e6aae0ee93784d9b936d (patch)
treebbbfbd07a419d24c39ff8de37f35cc86436a3016 /res
parent2df0fb4774d054e8f394dfefd62a0511db29d17e (diff)
downloadAntennaPod-92c53bcf92c9be21df88e6aae0ee93784d9b936d.zip
Converted FeedlistActivity into ListFragment
Diffstat (limited to 'res')
-rw-r--r--res/layout/main.xml20
1 files changed, 9 insertions, 11 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml
index 45ed9b9b5..b96bf31bf 100644
--- a/res/layout/main.xml
+++ b/res/layout/main.xml
@@ -1,16 +1,14 @@
<?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:id="@+id/main_view"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:orientation="vertical" >
- <EditText
- android:id="@+id/textedit"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <Button
- android:id="@+id/testbutton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Test2" />
+ <FrameLayout
+ android:id="@+id/main_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="0px"
+ android:layout_weight="1">
+ </FrameLayout>
</LinearLayout>