diff options
author | Daniel Oeh <daniel@danielpc.(none)> | 2012-04-14 23:02:38 +0200 |
---|---|---|
committer | Daniel Oeh <daniel@danielpc.(none)> | 2012-04-14 23:05:26 +0200 |
commit | 055fda3c9112bce67cc8610bf86a4632b0b53aaf (patch) | |
tree | d459cd3525ea24836422f8f4829da72a4b950c53 /res/layout | |
parent | 43de4eaf586bf77bb458cc79b2b763f213feeb24 (diff) | |
download | AntennaPod-055fda3c9112bce67cc8610bf86a4632b0b53aaf.zip |
Added functionality to AddFeedActivity
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/addfeed.xml | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/res/layout/addfeed.xml b/res/layout/addfeed.xml index 605dcac7b..b084f2eee 100644 --- a/res/layout/addfeed.xml +++ b/res/layout/addfeed.xml @@ -1,15 +1,30 @@ <?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" > + <TextView + android:id="@+id/txtvFeedurl" + android:text="@string/feedurl_label" android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:orientation="vertical" > + android:layout_height="wrap_content" + /> <EditText android:id="@+id/etxtFeedurl" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - /> - <Button android:id="@+id/butConfirm" - android:text="@string/confirm_label" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - /> + android:layout_width="fill_parent" + android:layout_height="wrap_content"/> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal"> + <Button android:id="@+id/butConfirm" + android:text="@string/confirm_label" + android:layout_width="0px" + android:layout_height="wrap_content" + android:layout_weight="1"/> + <Button android:id="@+id/butCancel" + android:layout_width="0px" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/cancel_label"/> + </LinearLayout> </LinearLayout> |