aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/fragment_edit_note.xml
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2013-04-06 16:22:40 +0200
committerSamuel Tardieu <sam@rfc1149.net>2013-04-06 16:36:33 +0200
commite46b4a46ff6c3ab07ad3172f3c39c8c98202ed46 (patch)
tree01e873701ace0991f40260af9ce0ed80331d7483 /main/res/layout/fragment_edit_note.xml
parentc890bfe512653280ca23dae53281137a5db9ad54 (diff)
downloadcgeo-e46b4a46ff6c3ab07ad3172f3c39c8c98202ed46.zip
cgeo-e46b4a46ff6c3ab07ad3172f3c39c8c98202ed46.tar.gz
cgeo-e46b4a46ff6c3ab07ad3172f3c39c8c98202ed46.tar.bz2
fix #2598: personal note editing layout problem
Diffstat (limited to 'main/res/layout/fragment_edit_note.xml')
-rw-r--r--main/res/layout/fragment_edit_note.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/main/res/layout/fragment_edit_note.xml b/main/res/layout/fragment_edit_note.xml
new file mode 100644
index 0000000..68e2b2c
--- /dev/null
+++ b/main/res/layout/fragment_edit_note.xml
@@ -0,0 +1,15 @@
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/edit_note"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:orientation="vertical">
+
+ <EditText
+ android:id="@+id/note"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:inputType="text"
+ android:imeOptions="actionDone"/>
+</LinearLayout>