如何提高IntentFilter的优先级

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>

你可能感兴趣的:(如何提高IntentFilter的优先级)