Can I change the layout of a bluetooth keyboard ju开发者_如何学JAVAst inside my application? Or in other words rebind the keys? For example: pressing "a" enters "s" and pressing "s" enters "a"
You can set setOnKeyListener()
for every EditText
in your application, where you will handle the KeyEvent
"a" by entering "s" to the 'EditText'. Yes, it is an ugly way but might just work.
精彩评论