Replace Google Now gesture

后端 未结 2 1369
傲寒
傲寒 2020-12-04 15:44

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-p

相关标签:
2条回答
  • 2020-12-04 16:24

    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.

    enter image description here

    0 讨论(0)
  • 2020-12-04 16:32

    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>
    
    0 讨论(0)
提交回复
热议问题