aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaneren2005 <daneren2005@gmail.com>2013-11-12 16:21:39 -0800
committerdaneren2005 <daneren2005@gmail.com>2013-11-12 16:21:39 -0800
commit3bfdcf4163db9227bf5be64850390238eaa31212 (patch)
tree397ad49fb1854a350c5d3bcc4ccce0ff67d4c04d
parentb5a1a88fe737430e99b82d0e9ac4df310486600a (diff)
downloaddsub-3bfdcf4163db9227bf5be64850390238eaa31212.tar.gz
dsub-3bfdcf4163db9227bf5be64850390238eaa31212.tar.bz2
dsub-3bfdcf4163db9227bf5be64850390238eaa31212.zip
Create bookmark dialog layout
-rw-r--r--res/layout/create_bookmark.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/res/layout/create_bookmark.xml b/res/layout/create_bookmark.xml
new file mode 100644
index 00000000..f72b39d8
--- /dev/null
+++ b/res/layout/create_bookmark.xml
@@ -0,0 +1,26 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content">
+
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
+ <TextView
+ android:id="@+id/comment_label"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="4dp"
+ android:textSize="20dp"
+ android:text="@string/common.comment" />
+ <EditText
+ android:id="@+id/comment_text"
+ android:inputType="text"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:layout_marginLeft="4dp" />
+ </LinearLayout>
+</LinearLayout>