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 | |
parent | 43de4eaf586bf77bb458cc79b2b763f213feeb24 (diff) | |
download | AntennaPod-055fda3c9112bce67cc8610bf86a4632b0b53aaf.zip |
Added functionality to AddFeedActivity
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/addfeed.xml | 35 | ||||
-rw-r--r-- | res/values/strings.xml | 4 |
2 files changed, 29 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> diff --git a/res/values/strings.xml b/res/values/strings.xml index ac12da982..a098e6e0b 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -9,6 +9,10 @@ <!-- --> <string name="confirm_label">Confirm</string> + <string name="cancel_label">Cancel</string> + + <!-- AddFeed Activity labels --> + <string name="feedurl_label">Feed URL</string> <!-- Feeditemview labels--> <string name="download_label">Download</string> |