标签: android keyboard cursor
如何关闭软键盘并可以通过触摸EditText中的位置来确定光标位置?
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
它是隐藏软键盘,但我无法设置光标!如何解决这个问题?
答案 0 :(得分:0)
使用Selection设置光标位置并使用setSelection方法