我正在使用 ActionBarCompat 和 QuickAction(https://github.com/lorensiuswlt/NewQuickAction也显示在http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/)我的安卓应用。
在操作栏的右侧有传统的搜索图标,用户触摸它,搜索视图就会展开,用户可以输入查询。
我有一个要求,而不是显示最近的搜索,弹出窗口将显示两个项目“在 foo 中搜索 TYPED_TEXT”和“在 bar 中搜索 TYPED_TEXT”,所以,而不是使用默认搜索弹出窗口(所以我不必处理内容提供者并模拟一个光标只是为了显示相同的两个项目)。
在我SearchView.OnQueryTextListener
的 中,onQueryTextChange
被覆盖,因此当用户键入至少 3 个字符时,我设置了 QuickAction 并显示它。
SearchView.OnQueryTextListener queryTextListener = new SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextChange(String newText) {
Context context = MyActivity.this.getBaseContext();
LayoutInflater inflator = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rootView = inflator.inflate(R.layout.quickaction_popup, null);
rootView.measure(0, 0);
QuickActionList action = new QuickActionList(MyActivity.this,
QuickActionList.HORIZONTAL, new LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT));
action.addActionView(rootView);
action.show(mSearchView);
// [1]. I'll explain this comment line below.
return false; // I tried with return true as well to indicate I've consumed the event here.
}
}
问题是:显示快速操作后,我无法输入任何内容。我必须再次触摸搜索视图才能输入另一个字符。
在我用 评论的地方// [1]
,我尝试用setFocusable
+ requestFocus
,setFocusableInTouchMode
+requestFocus
甚至setFocusable
+ setFocusableInTouchMode
+改变焦点requestFocus
,但根本没有成功。这是替换的代码段// [1]
:
mSearchView.setFocusable(true);
mSearchView.setFocusableInTouchMode(true);
boolean gotFocus = mSearchView.requestFocus();
Log.d("DOUG", Boolean.toString(gotFocus));
日志显示gotFocus = true
,但我仍然无法输入。我看到一个蓝色条显示它已准备好接受输入,但它没有闪烁。软键盘也一直显示,但是当我输入时,就像我在输入不可编辑的东西一样。可能 QuickAction 正在捕获软键事件,但我找不到如何避免这种情况。
有关如何解决此问题或解决方法的任何想法?
谢谢