summaryrefslogtreecommitdiff
path: root/res/layout-v14/addfeed.xml
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-16 17:06:21 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-16 17:06:21 +0200
commitcc919487a79b1cde37d9442a4ebe2883483de13c (patch)
tree7ca87dfdab9d3d8503730c2f388f025dd62f0493 /res/layout-v14/addfeed.xml
parent114d348a0cf09562cebd1a8aa5216886fcdb590f (diff)
downloadAntennaPod-cc919487a79b1cde37d9442a4ebe2883483de13c.zip
Created separate layout for api 14+
Diffstat (limited to 'res/layout-v14/addfeed.xml')
-rw-r--r--res/layout-v14/addfeed.xml70
1 files changed, 70 insertions, 0 deletions
diff --git a/res/layout-v14/addfeed.xml b/res/layout-v14/addfeed.xml
new file mode 100644
index 000000000..fce280c46
--- /dev/null
+++ b/res/layout-v14/addfeed.xml
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout 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:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentTop="true"
+ android:layout_margin="8dp"
+ android:text="@string/txtvfeedurl_label" />
+
+ <EditText
+ android:id="@+id/etxtFeedurl"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/txtvFeedurl"
+ android:layout_margin="8dp"
+ android:hint="@string/feedurl_label"
+ android:inputType="textUri" />
+
+ <RelativeLayout
+ android:id="@+id/footer"
+ android:layout_width="fill_parent"
+ android:layout_height="48dp"
+ android:layout_alignParentBottom="true" >
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dip"
+ android:layout_alignParentTop="true"
+ android:layout_marginLeft="4dip"
+ android:layout_marginRight="4dip"
+ android:background="?android:attr/dividerVertical" />
+
+ <View
+ android:id="@+id/horizontal_divider"
+ android:layout_width="1dip"
+ android:layout_height="fill_parent"
+ android:layout_alignParentTop="true"
+ android:layout_centerHorizontal="true"
+ android:layout_margin="4dp"
+ android:background="?android:attr/dividerVertical" />
+
+ <Button
+ android:id="@+id/butCancel"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentTop="true"
+ android:layout_toLeftOf="@id/horizontal_divider"
+ android:background="?android:attr/selectableItemBackground"
+ android:text="@string/cancel_label" />
+
+ <Button
+ android:id="@+id/butConfirm"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentTop="true"
+ android:layout_toRightOf="@id/horizontal_divider"
+ android:background="?android:attr/selectableItemBackground"
+ android:text="@string/confirm_label" />
+ </RelativeLayout>
+
+</RelativeLayout> \ No newline at end of file