I need to show soft keyboard on start application. I have new project:
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.WindowManager;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
import pp.pp.R;
public class PppActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
EditText txt = new EditText(this);
}
}
I Try (in PppActivity):
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
plus:
imm.toggleSoftInput(0, InputMethodManager.SHOW_FORCED);
or
imm.toggleSoftInput(0, InputMethodManager.SHOW_IMPLICIT);
or
imm.toggleSoftInput(0, 0);
or
imm.showSoftInput(txt, 0);
And nothing works :(
Secound question:
How do I retrieve data from the keyboard to EditText? (EditText must be invisible)
Thanks!