Home | History | Annotate | Download | only in car

Lines Matching refs:Car

17 package android.support.car;
20 * Listener for monitoring car connection status.
21 * Callbacks are called from the looper specified when constructing {@link Car}.
25 * Called when the Car has been connected. Does not guarantee the car is still connected
27 * thrown from {@link Car} method calls.
28 * @param car the car with which this callback is registered.
30 public abstract void onConnected(Car car);
32 * Called when the Car has been disconnected.
33 * @param car the car with which this callback is registered.
35 public abstract void onDisconnected(Car car);