Replace Google Now gesture

≡放荡痞女 提交于 2019-11-26 19:13:03

问题


If you want to start Google Now on Nexus devices, you swipe-up with a simple gesture from the navbar. I want go replace this feature with my own app. if you swipe the, app-picker comes and asks you which app do you want to start: my app or Google Now. How can I implement this?

I have found an example which runs without root.


回答1:


Add the following <intent-filter> to the Activity you want launched from the gesture:

<intent-filter>
    <action android:name="android.intent.action.ASSIST" />

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

You will now see an option for your app when you make the swipe now, and will have to select it as the default handler by selecting Always, as shown below.




回答2:


It's just a matter of setting the correct intent filter:

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


来源:https://stackoverflow.com/questions/14233330/replace-google-now-gesture

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!