views:

349

answers:

3

I have one question:

How can I select what soft-keyboard an edittext will load?

Thanks

+2  A: 

The user chooses the input method editor (IME). You can configure the IME somewhat via android:imeOptions and android:inputType attributes in your layout XML.

CommonsWare
but i create my own soft-keyboard because i need a key called "next", so i need that soft-keyboard be load –
xger86x
You can set the action button (lower-right corner) to have a label of "Next", thereby avoiding your own soft keyboard implementation. And you absolutely cannot change what soft keyboard is displayed -- the user has to choose your IME via the Settings application.
CommonsWare
A: 

The InputType of the editText determines which keyboard is shown. See Input Type

Mayra
but i create my own soft-keyboard because i need a key called "next", so i need that soft-keyboard be load
xger86x
Did you look at the IME action buttons? I've never done it, but this article http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html talks about a next action..
Mayra
A: 

hii friends ...have u know any other way to take input from our own array of String at the place of take value from XML as shown in sample in SDK ../sample/..

Shubh