summaryrefslogtreecommitdiff
path: root/res/layout-v14
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-23 17:19:54 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-23 17:19:54 +0200
commitdfd3dc8bf8454dcb935eaeb224da9d275e406db9 (patch)
treef090d1bb22160f5f37dd6ee4353de30262b10c53 /res/layout-v14
parentc9197522de26754994c01b5162246ded01413568 (diff)
downloadAntennaPod-dfd3dc8bf8454dcb935eaeb224da9d275e406db9.zip
added api 14+ layout for opml selection activity
Diffstat (limited to 'res/layout-v14')
-rw-r--r--res/layout-v14/opml_selection.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/res/layout-v14/opml_selection.xml b/res/layout-v14/opml_selection.xml
new file mode 100644
index 000000000..3133debd1
--- /dev/null
+++ b/res/layout-v14/opml_selection.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+ <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: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_marginBottom="4dp"
+ android:layout_marginTop="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>
+
+ <ListView
+ android:id="@+id/feedlist"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_above="@id/footer"
+ android:layout_alignParentTop="true"
+ tools:listitem="@android:layout/simple_list_item_multiple_choice" >
+ </ListView>
+
+</RelativeLayout> \ No newline at end of file