diff options
author | SeongJae Park <sj38.park@gmail.com> | 2012-03-02 14:26:21 +0900 |
---|---|---|
committer | SeongJae Park <sj38.park@gmail.com> | 2012-03-02 15:08:48 +0900 |
commit | c0040db4365a237d67bdc7d25c02944b74f76429 (patch) | |
tree | f7ccf586c647b5fdb9933f7ac274b2858600a302 | |
parent | c421c06509549e9a29456d00b21176baeeb303f5 (diff) | |
download | external_qemu-c0040db4365a237d67bdc7d25c02944b74f76429.zip external_qemu-c0040db4365a237d67bdc7d25c02944b74f76429.tar.gz external_qemu-c0040db4365a237d67bdc7d25c02944b74f76429.tar.bz2 |
Set value of hw.keyboard "no".
Commit for discuss at
https://groups.google.com/forum/?fromgroups#!topic/android-contrib/H_oodJPngHo
Because default value of hw.keyboard is "yes", emulator doesn't display
soft keyboard although text input widget has focus.
Developers can change value easily;
But users who doesn't know about property setting such as non-developer
can be confused a lot.
And, most devices has no H/W keyboard(Galaxy Nexus too).
So, set default value of hw.keyboard to "no".
Change-Id: Id3a6af23fe0525e4b8f6ccd8bbde2d6dd26e5d7d
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
-rw-r--r-- | android/avd/hardware-properties.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/avd/hardware-properties.ini b/android/avd/hardware-properties.ini index ebf2450..005c63d 100644 --- a/android/avd/hardware-properties.ini +++ b/android/avd/hardware-properties.ini @@ -70,7 +70,7 @@ description = Whether there is a trackball on the device. # Keyboard support (qwerty/azerty) name = hw.keyboard type = boolean -default = yes +default = no abstract = Keyboard support description = Whether the device has a QWERTY keyboard. |