I’m beginner in Java Android developing. I’m using Eclipse SDK 3.6.1 version. I’m trying to do this thing: when I start my application it calling to input a pin code, but if you want to input a number you have to click on the pin field. How to call number keyboard automatically? I’m using Samsung gt-i5500, it’s touchscreen.
I’m beginner in Java Android developing. I’m using Eclipse SDK 3.6.1 version. I’m trying
Share
I’ve not actually tried this, but you could try setting
android:inputType="phone"on the pin field, then callingrequestFocuson that field in your code.