diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2013-04-06 16:42:14 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2013-04-06 16:42:14 +0200 |
| commit | 64493f9a529f452d439242793973d6131c1b2536 (patch) | |
| tree | 020208b30f7c290604335638e5753f0a4ed87f5b /main/res | |
| parent | 0856587453f4df9379cda95891b9a785f3673095 (diff) | |
| parent | e46b4a46ff6c3ab07ad3172f3c39c8c98202ed46 (diff) | |
| download | cgeo-64493f9a529f452d439242793973d6131c1b2536.zip cgeo-64493f9a529f452d439242793973d6131c1b2536.tar.gz cgeo-64493f9a529f452d439242793973d6131c1b2536.tar.bz2 | |
Merge branch 'issue-2598' into upstream
Diffstat (limited to 'main/res')
| -rw-r--r-- | main/res/layout/fragment_edit_note.xml | 15 |
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> |
