Added in API level 18

OnProvideAssistDataListener

interface OnProvideAssistDataListener
android.app.Application.OnProvideAssistDataListener

Callback interface for use with Application#registerOnProvideAssistDataListener and Application#unregisterOnProvideAssistDataListener.

Summary

Public methods
abstract Unit
onProvideAssistData(activity: Activity!, data: Bundle!)

This is called when the user is requesting an assist, to build a full Intent#ACTION_ASSIST Intent with all of the context of the current application.

Public methods

onProvideAssistData

Added in API level 18
abstract fun onProvideAssistData(
    activity: Activity!,
    data: Bundle!
): Unit

This is called when the user is requesting an assist, to build a full Intent#ACTION_ASSIST Intent with all of the context of the current application. You can override this method to place into the bundle anything you would like to appear in the Intent#EXTRA_ASSIST_CONTEXT part of the assist Intent.