Skip to content Skip to sidebar Skip to footer

Replace Google Now Gesture

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 c

Solution 1:

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

<intent-filter><actionandroid:name="android.intent.action.ASSIST" /><categoryandroid: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

Solution 2:

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

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

Post a Comment for "Replace Google Now Gesture"