本文介绍了android在按下@手机的搜索按钮上启动用户定义的活动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当用户按下手机上的搜索按钮时,我使用以下代码启动活动

I am using following code to start activity when user pressing search button on the handset

@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
    if(keyCode == KeyEvent.KEYCODE_SEARCH){
        Util.startActivity(ReviewsDetail.this, KeywordSearch.class);
        return false;
    }else{
        return super.onKeyUp(keyCode, event); 
    }
}

但是这里有一些问题,请看下图.

But here are few issues with it please look at the following image.

当按下搜索按钮时,它首先在活动顶部显示谷歌搜索框,然后开始我想开始的活动

When press search button it first show google search box at the top of activity then start activity which i want to start

点击后退按钮时显示空活动

When click on the back button displays empty actiivty

推荐答案

 @Override
 public boolean onSearchRequested() {

     // your logic here

     return false;  // don't go ahead and show the search box
 }

这篇关于android在按下@手机的搜索按钮上启动用户定义的活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 14:51