ActivityCompat.PermissionCompatDelegate

Added in 1.1.0

interface ActivityCompat.PermissionCompatDelegate


Customizable delegate that allows delegating permission compatibility methods to a custom implementation.

To delegate permission compatibility methods to a custom class, implement this interface, and call ActivityCompat.setPermissionCompatDelegate(delegate);. All future calls to the permission compatibility methods in this class will first check whether the delegate can handle the method call, and invoke the corresponding method if it can.

Summary

Public functions

Boolean
onActivityResult(
    activity: Activity,
    requestCode: @IntRange(from = 0) Int,
    resultCode: Int,
    data: Intent?
)

Determines whether the delegate should handle the permission request as part of FragmentActivity#onActivityResult(int, int, Intent).

Boolean
requestPermissions(
    activity: Activity,
    permissions: Array<String!>,
    requestCode: @IntRange(from = 0) Int
)

Determines whether the delegate should handle requestPermissions, and request permissions if applicable.

Public functions

onActivityResult

Added in 1.1.0
fun onActivityResult(
    activity: Activity,
    requestCode: @IntRange(from = 0) Int,
    resultCode: Int,
    data: Intent?
): Boolean

Determines whether the delegate should handle the permission request as part of FragmentActivity#onActivityResult(int, int, Intent). If this method returns true, it means that activity result is successfully handled by the delegate, and no further action is needed on this activity result.

Parameters
activity: Activity

The target Activity.

requestCode: @IntRange(from = 0) Int

The integer request code originally supplied to startActivityForResult(), allowing you to identify who this result came from.

resultCode: Int

The integer result code returned by the child activity through its setResult()}.

data: Intent?

An Intent, which can return result data to the caller (various data can be attached to Intent "extras").

Returns
Boolean

Whether the delegate has handled the activity result.

requestPermissions

Added in 1.1.0
fun requestPermissions(
    activity: Activity,
    permissions: Array<String!>,
    requestCode: @IntRange(from = 0) Int
): Boolean

Determines whether the delegate should handle requestPermissions, and request permissions if applicable. If this method returns true, it means that permission request is successfully handled by the delegate, and platform should not perform any further requests for permission.

Parameters
activity: Activity

The target activity.

permissions: Array<String!>

The requested permissions. Must be non-null and not empty.

requestCode: @IntRange(from = 0) Int

Application specific request code to match with a result reported to onRequestPermissionsResult. Should be >= 0.

Returns
Boolean

Whether the delegate has handled the permission request.