Most visited

Recently visited

Added in API level 18

Application.OnProvideAssistDataListener

public static interface Application.OnProvideAssistDataListener

android.app.Application.OnProvideAssistDataListener


Callback interface for use with registerOnProvideAssistDataListener(Application.OnProvideAssistDataListener) and unregisterOnProvideAssistDataListener(Application.OnProvideAssistDataListener).

Summary

Public methods

abstract void onProvideAssistData(Activity activity, Bundle data)

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

Public methods

onProvideAssistData

Added in API level 18
void onProvideAssistData (Activity activity, 
                Bundle data)

This is called when the user is requesting an assist, to build a full 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 EXTRA_ASSIST_CONTEXT part of the assist Intent.

Parameters
activity Activity
data Bundle

Hooray!