Android - 如何禁用搜索按钮,如何实现onSearchRequested()?

时间:2012-10-31 16:22:29

标签: java android search button

检查出以下内容: How to have clicking the phone's search button do nothing?

但它对我不起作用。有人还有其他建议吗?谢谢。 根据Phil的建议,根据他的回答更新代码。 显示错误http://www.youtube.com/watch?v=9lekcH1JAf0&feature=youtu.be

所以我做了一个示例项目。我在两款不同的手机上测试了这个,Android版本2.3.5和4.1,我也在模拟器版本2.2上进行了测试。单击按钮显示对话框后,它会很好地显示进度对话框,并且应该继续这样做。但是单击手机和模拟器上的“搜索”按钮会使进度对话框消失。这是班级,然后是清单。

当前的行为是,当单击搜索按钮时,进度对话框将消失。 预期或需要的行为是禁用搜索按钮,或类似地在显示对话框并单击搜索按钮时,此单击不会使对话框消失。

    package com.example.test6;

import android.os.Bundle;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {

    Button showDialogButton;
    Context context;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        showDialogButton = (Button) findViewById(R.id.showDialogButton);
        showDialogButton.setOnClickListener(showDialog);
        context = this;
        startSearch(null, false, null, false);
    }

    private OnClickListener showDialog = new OnClickListener() {

        @Override
        public void onClick(View v) {
            ProgressDialog progressDialog = new ProgressDialog(context);
            progressDialog.show();
        }
    };

    @Override
    public boolean onSearchRequested() {
       Log.d("onSearchRequested", "search key pressed");
       return false;
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.test6"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="1"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="Test6" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.SEARCH" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        <meta-data
            android:name="android.app.searchable"
            android:resource="@xml/searchable" />
        </activity>
    </application>

</manifest>

我可搜索的xml位于:res / xml / searchable.xml,根据提供的参考。这就是我的searchable.xml的样子:

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:searchSuggestAuthority="dictionary"
    android:searchSuggestIntentAction="android.intent.action.VIEW"
    android:includeInGlobalSearch="true">
</searchable>

4 个答案:

答案 0 :(得分:4)

修改

很高兴下面的代码很有帮助。通过您更新的问题(以及视频),我现在相信这是您需要的答案:Prevent ProgressDialog from being dismissed when I click the search button (Android)

- PRE-EDIT -

您需要致电:

,而不是从onSearchRequested()致电onCreate()
startSearch(null, false, null, false);

然后,为防止搜索按钮使用onSearchRequested()方法,您将覆盖它并返回false:

@Override
public boolean onSearchRequested()
{
   return false;
}

此解决方案在onSearchRequested documentation

中直接讨论
  

您可以使用此功能作为启动搜索UI的简单方法   响应您的菜单项,搜索按钮或其他小部件   活动。除非被覆盖,否则调用此函数与   调用startSearch(null,false,null,false),启动搜索   对于其清单中指定的当前活动,请参阅   SearchManager的。

     

您可以覆盖此功能以强制全局搜索,例如在   响应专用搜索键,或完全阻止搜索(通过   简单地返回假。)

您的AndroidManifest.xml也不完整。您需要证明您的Activity是可搜索的。更改 MainActivity 声明,如下所示:

    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.SEARCH" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
        <meta-data
            android:name="android.app.searchable"
            android:resource="@xml/searchable" />
    </activity>

请注意, @ xml / searchable 是apk中定义搜索方式的xml参考。详细讨论了该资源here

答案 1 :(得分:0)

@Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
       if (keyCode == KeyEvent.KEYCODE_SEARCH) {
          Log.d("onKeyDown", "search key pressed");
          // onSearchRequested();
          return true; // You need to return true here.  This tells android that you consumed the event.
       }
       return false;
    }

答案 2 :(得分:0)

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
       if (keyCode == KeyEvent.KEYCODE_SEARCH && event.getRepeatCount() == 0) {
            return true;
        }
        return false; 
    }

http://developer.android.com/reference/android/view/KeyEvent.html

答案 3 :(得分:0)

您无法中断活动中的搜索关键事件。

您必须在对话框中中断搜索键事件。

    private OnClickListener showDialog = new OnClickListener() {

    @Override
    public void onClick(View v) {
        ProgressDialog progressDialog = new ProgressDialog(context);
        progressDialog.setOnKeyListener(new OnKeyListener(){
               public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event)     {
               if (keyCode == KeyEvent.KEYCODE_SEARCH) {
                     Log.d("onKeyDown", "search key pressed");
                     return true; 
               }
               return super.onKey(dialog,keyCode,event);
     }});
        progressDialog.show();
    }
};