开发者

Android : EditText with custom keyboard

开发者 https://www.devze.com 2022-12-29 12:32 出处:网络
I created my own custom keyboard following the the example in the sdk. Now I would like to use this custom keyboard by default on my EditText in my app (actualy I have to long press the edittext and

I created my own custom keyboard following the the example in the sdk.

Now I would like to use this custom keyboard by default on my EditText in my app (actualy I have to long press the edittext and then choose my custom keyboard).

How can I do that ? (seems to be rela开发者_运维百科ted to the inputType property but I can't find out how to set it)

Thanks !


If by saying "I created my own custom keyboard" you mean you wrote your own IME, this is probably not what you want. An IME is a separate component that is designed to interact with any other application on the device for text input.

If you just want a custom keyboard in your own app, you should implement that inside your app as part of its UI.


How can I do that?

Have your users set your keyboard to be their default. Applications do not have control over that.


Try using a PopupWindow containing the layout of your custom keyboard, position the popup Window at bottom of the screen and handle clicks of the custom keyboard buttons yourself. Do disable the virtual keyboard before you do that.

For example of popup window, you can check: http://al1us.net/?p=131

use GRAVITY.BOTTOM in showAtLocation() function

0

精彩评论

暂无评论...
验证码 换一张
取 消