如何提高IntentFilter的优先级

来源:互联网 发布:windows优化大师好吗 编辑:程序博客网 时间:2024/05/22 07:44

android  Launcher待机桌面的搜索框默认使用的是GoogleSearch,如果让其使用有源码的QuickSearchBox,则需要在AndroidManifest.xml中做如下修改:

修改前:

<intent-filter>
                <action android:name="android.search.action.GLOBAL_SEARCH" />
                <category android:name="android.intent.category.DEFAULT" /> 

</intent-filter>


修改后:

<intent-filter android:priority="3">
                <action android:name="android.search.action.GLOBAL_SEARCH" />
                <category android:name="android.intent.category.DEFAULT" />
 </intent-filter>

0 0
原创粉丝点击