Would it not be possible to edit and replace the qwerty.xml-files in system/usr/keyboard-config/layouts?
For example, in my swedish qwerty-se-fi.xml-file I have
Quote:
<key id="18"
primaryNormal="e" primaryShifted="E"
associatedNormal="'" associatedShifted="'"/>
|
Would it work if I change it to
Quote:
<key id="18"
primaryNormal="e" primaryShifted="E"
associatedNormal=""" associatedShifted="""/>
|
and replace the original file on the phone?
However, I don´t really know how to copy and overwrite files (it didn´t work with a file explorer on the phone itself).
When I use "adb push qwerty-se-fi.xml /system/usr/keyboard-config/layouts" I get "Permission denied".
When I try "adb remount" I get "remount failed: Operation not permitted".
If I try through adb shell it still do not work:
Code:
D:\tools>adb shell
$ su
su
# adb push qwerty-se-fi.xml /system/usr/keyboard-config/layouts
adb push qwerty-se-fi.xml /system/usr/keyboard-config/layouts
adb: not found
The qwerty-se-fi.xml-file is in the tools-folder. The phone have USB debugging activated.
|