diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-12-22 23:55:35 +0100 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-12-22 23:55:35 +0100 |
commit | 8726ea18c07e57d9cb3fd94acb5ee0c34149d305 (patch) | |
tree | 0f7687fd6f2ef7dc37d41b624141d4ca05991ca6 /res/layout | |
parent | f0f68fd015768d67735759f90e609407c7fb728d (diff) | |
download | AntennaPod-8726ea18c07e57d9cb3fd94acb5ee0c34149d305.zip |
Created layout for directorychooser
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/directory_chooser.xml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/res/layout/directory_chooser.xml b/res/layout/directory_chooser.xml new file mode 100644 index 000000000..cf53962ef --- /dev/null +++ b/res/layout/directory_chooser.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" > + + <LinearLayout + android:id="@+id/footer" + style="@android:style/ButtonBar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_alignParentBottom="true" + android:orientation="horizontal" > + + <Button + android:id="@+id/butConfirm" + android:layout_width="0px" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/confirm_label" /> + + <Button + android:id="@+id/butCancel" + android:layout_width="0px" + android:layout_height="wrap_content" + android:layout_weight="1" + android:text="@string/cancel_label" /> + </LinearLayout> + + <RelativeLayout + android:id="@+id/directory_info" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" > + + <ImageButton + android:id="@+id/butNavUp" + android:layout_width="60dp" + android:layout_height="60dp" + android:layout_alignParentLeft="true" + android:layout_alignParentTop="true" + android:background="@drawable/borderless_button" + android:src="@attr/navigation_up" /> + + <TextView + android:id="@+id/txtvSelectedFolderLabel" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + android:layout_marginLeft="8dp" + android:layout_marginRight="8dp" + android:layout_marginTop="8dp" + android:layout_toRightOf="@id/butNavUp" + android:text="@string/selected_folder_label" + android:textStyle="bold" > + </TextView> + + <TextView + android:id="@+id/txtvSelectedFolder" + android:layout_below="@id/txtvSelectedFolderLabel" + android:layout_margin="8dp" + android:layout_toRightOf="@id/butNavUp" + android:ellipsize="middle" /> + + <View + android:id="@+id/divider" + android:layout_width="match_parent" + android:layout_height="1dp" + android:layout_below="@id/butNavUp" + android:background="@color/bright_blue" /> + </RelativeLayout> + + <ListView + android:id="@+id/directory_list" + android:layout_width="match_parent" + android:layout_height="0dp" + android:layout_above="@id/footer" + android:layout_below="@id/directory_info" /> + +</RelativeLayout>
\ No newline at end of file |