InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
//隐藏软键盘
// imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
//显示软键盘
// imm.showSoftInputFromInputMethod(editView.getWindowToken(), 0);
//切换软键盘的显示与隐藏
imm.toggleSoftInputFromWindow(editView.getWindowToken(), 0, InputMethodManager.HIDE_NOT_ALWAYS);
让edittext在这个界面开始是请求焦点。
在你的activity的onresume()中添加 xxx.requestFocus();
xxx为你的控件。
android:layout_height="wrap_content"
android:hint="@string/hello_world" >