3个回答
展开全部
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);
//隐藏软键盘
// 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为你的控件。
在你的activity的onresume()中添加 xxx.requestFocus();
xxx为你的控件。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/hello_world" >
<requestFocus />
</EditText>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/hello_world" >
<requestFocus />
</EditText>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询