Sam*_* Z. -2
更好的方法你可以使用两种方法
按下搜索按钮并拨打电话onSearchRequested();
第二种方法是单击 editText 放置,android:imeOptions="actionSearch"因此您需要
检查密钥
searchBox.setOnEditorActionListener(new OnEditorActionListener()
{
public boolean onEditorAction(TextView textView, int id,KeyEvent event)
{
if (id == EditorInfo.IME_ACTION_SEARCH)
{
//do what ever you want
}
return true;
}
});
Run Code Online (Sandbox Code Playgroud)希望对你有帮助。