第一次点击时显示 AutoCompleteTextView
Show AutoCompleteTextView on the first click
我正在使用 AutoCompleteTextView
在用户输入单词时显示下拉列表,但我希望下拉列表在用户首次点击该字段时显示。
也许使用微调器会更好,但我没有文本输入...
只需在 onTouch 方法中调用 autoCompleteTextView.showDropDown()。
mAnswer.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
mAnswer.showDropDown();
}
return false;
}
});
我正在使用 AutoCompleteTextView
在用户输入单词时显示下拉列表,但我希望下拉列表在用户首次点击该字段时显示。
也许使用微调器会更好,但我没有文本输入...
只需在 onTouch 方法中调用 autoCompleteTextView.showDropDown()。
mAnswer.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
mAnswer.showDropDown();
}
return false;
}
});