ParkedOnlyOnClickListener

@CarProtocol
public final class ParkedOnlyOnClickListener implements OnClickListener


An OnClickListener that wraps another one and executes its onClick method only when the car is parked.

When the car is not parked, the handler won't be executed and the host will display a message to the user indicating that the action can only be used while parked.

Actions that direct the users to their phones must only execute while parked. This class should be used for wrapping any click listeners that invoke such actions.

Example:

builder.setOnClickListener(ParkedOnlyOnClickListener.create(
    () -> myClickAction()));

Summary

Public methods

static @NonNull ParkedOnlyOnClickListener

Constructs a new instance of a ParkedOnlyOnClickListener.

void

Triggers the onClick method in the listener wrapped by this object.

Public methods

create

Added in 1.0.0
public static @NonNull ParkedOnlyOnClickListener create(@NonNull OnClickListener listener)

Constructs a new instance of a ParkedOnlyOnClickListener.

Note that the listener relates to UI events and will be executed on the main thread using getMainLooper.

Throws
java.lang.NullPointerException

if listener is null

onClick

Added in 1.4.0-rc02
public void onClick()

Triggers the onClick method in the listener wrapped by this object.