aboutsummaryrefslogtreecommitdiff
path: root/res/layout/save_playlist.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/save_playlist.xml')
-rw-r--r--res/layout/save_playlist.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/res/layout/save_playlist.xml b/res/layout/save_playlist.xml
new file mode 100644
index 00000000..43f1827a
--- /dev/null
+++ b/res/layout/save_playlist.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/save_playlist_root"
+ android:padding="10dip"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <EditText
+ android:id="@+id/save_playlist_name"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:inputType="text"
+ android:singleLine="true"/>
+
+ <CheckBox
+ android:id="@+id/save_playlist_overwrite"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/playlist.overwrite"
+ android:layout_marginLeft="4dp"
+ android:checked="false"
+ android:visibility="gone"/>
+
+</LinearLayout>
+