diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-10-31 10:35:55 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-10-31 10:35:55 +0000 |
| commit | eaff333bf526225cfca84cd686fe5332b852e506 (patch) | |
| tree | 98fda966dfe1091295928cfa0f660e4ce9bc7f6b /android/res/layout | |
| parent | 26f7ee13ce024b21c83cf68ca7fd27306a0bf5be (diff) | |
| download | rockbox-eaff333bf526225cfca84cd686fe5332b852e506.zip rockbox-eaff333bf526225cfca84cd686fe5332b852e506.tar.gz rockbox-eaff333bf526225cfca84cd686fe5332b852e506.tar.bz2 rockbox-eaff333bf526225cfca84cd686fe5332b852e506.tar.xz | |
Use a Native keyboard GUI instead of rockbox's internal one on android
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28407 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android/res/layout')
| -rw-r--r-- | android/res/layout/keyboardinput.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/res/layout/keyboardinput.xml b/android/res/layout/keyboardinput.xml new file mode 100644 index 0000000..124eda8 --- /dev/null +++ b/android/res/layout/keyboardinput.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> + +<AbsoluteLayout android:id="@+id/AbsoluteLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"><EditText android:layout_height="wrap_content" android:text="Some Text" android:layout_width="fill_parent" android:id="@+id/KbdInput"></EditText> +</AbsoluteLayout> |