[android-developers] Re: Automatic launch of Virtual Keypad in first screen(launcher) of application

2009-08-29 Thread Gustav Mauer
What I did in the same situation was make one of the images in the screen focusable (a property in the layout) and then when creating the view in onCreate after the setContentView() call, called code like this: displayIcon = (ImageView)findViewById(R.id.your_image_widget); displayIcon.requestFocus

[android-developers] Re: Automatic launch of Virtual Keypad in first screen(launcher) of application

2009-08-28 Thread Muha
Hi Durg, I'm facing an opposite problem when the app is installed in a real device (a HTC G2). I want to open my screen with keypad hidden, but as the activity has an EditText which automatically receives focus, it triggers the opening of the keypad. As you did, I tried to put a similar co