diff options
author | daneren2005 <daneren2005@gmail.com> | 2013-11-12 16:21:39 -0800 |
---|---|---|
committer | daneren2005 <daneren2005@gmail.com> | 2013-11-12 16:21:39 -0800 |
commit | 3bfdcf4163db9227bf5be64850390238eaa31212 (patch) | |
tree | 397ad49fb1854a350c5d3bcc4ccce0ff67d4c04d /res/layout | |
parent | b5a1a88fe737430e99b82d0e9ac4df310486600a (diff) | |
download | dsub-3bfdcf4163db9227bf5be64850390238eaa31212.tar.gz dsub-3bfdcf4163db9227bf5be64850390238eaa31212.tar.bz2 dsub-3bfdcf4163db9227bf5be64850390238eaa31212.zip |
Create bookmark dialog layout
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/create_bookmark.xml | 26 |
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> |