我是Android开发的新手,现在尝试模拟对AutoCompleteTextView对象的单击.
我期望使用默认的android键盘外观,并可以在元素上键入一些内容
这是一个简单的函数,我正在尝试执行该函数:
private void someTestMethodName() {
AutoCompleteTextView tagSearchInput = findViewById(R.id.autoCompleteTextView);
tagSearchInput.performClick();
}
这是.xml元素定义:
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView"
android:text="TextView"
android:layout_width="188dp"
android:layout_height="62dp"
android:layout_alignParentStart="true"
android:layout_marginStart="108dp"
android:layout_alignParentTop="true"
android:layout_marginTop="292dp"/>
最佳答案
在TextView上调用performClick不会弹出软键盘,但是您可以自己轻松地做到这一点:
private void someTestMethodName() {
AutoCompleteTextView tagSearchInput = findViewById(R.id.autoCompleteTextView);
showSoftKeyboard(tagSearchInput);
}
public void showSoftKeyboard(View view){
if(view.requestFocus()){
InputMethodManager imm =(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(view,InputMethodManager.SHOW_IMPLICIT);
}
}
可以在这里找到更多信息:https://github.com/codepath/android_guides/wiki/Working-with-the-Soft-Keyboard