BridgeModeConstants
public
class
BridgeModeConstants
extends Object
java.lang.Object | |
↳ | android.support.wearable.notifications.BridgeModeConstants |
This class is deprecated.
use the androidx.wear.utils.MetadataConstants
provided by the Jetpack Wear library instead.
Constants for customizing bridging of notifications from the phone to the wearable.
We support specifying whether notifications should be bridged from the phone to the wearable in the Wear app manifest file. Simply add a meta-data element to the Wear app manifest with the name "com.google.android.wearable.notificationBridgeMode" and either the value NO_BRIDGING or the value BRIDGING. If you choose not to update your Wear app manifest, then notifications will be bridged by default from the phone to the wearable.
NO_BRIDGING means that phone notifications will not be bridged to the wearable if the wearable app is installed.
BRIDGING means that phone notifications will be bridged to the wearable, unless they are
posted with setLocalOnly(true)
.
Example AndroidManifest.xml meta-data element for NO_BRIDGING:
<meta-data
android:name="com.google.android.wearable.notificationBridgeMode"
android:value="NO_BRIDGING" />
Example AndroidManifest.xml meta-data element for BRIDGING:
<meta-data
android:name="com.google.android.wearable.notificationBridgeMode"
android:value="BRIDGING" />
Summary
Constants | |
---|---|
String |
NOTIFICATION_BRIDGE_MODE_BRIDGING
The value of the notification bridge mode meta-data element in the case where the Wear app wants notifications to be bridged from the phone to the wearable. |
String |
NOTIFICATION_BRIDGE_MODE_METADATA_NAME
The name of the meta-data element in the Wear app manifest for specifying whether notifications should be bridged from the phone to the wearable. |
String |
NOTIFICATION_BRIDGE_MODE_NO_BRIDGING
The value of the notification bridge mode meta-data element in the case where the Wear app does not want notifications to be bridged from the phone to the wearable. |
Inherited methods | |
---|---|
Constants
NOTIFICATION_BRIDGE_MODE_BRIDGING
public static final String NOTIFICATION_BRIDGE_MODE_BRIDGING
The value of the notification bridge mode meta-data element in the case where the Wear app wants notifications to be bridged from the phone to the wearable.
Constant Value: "BRIDGING"
NOTIFICATION_BRIDGE_MODE_METADATA_NAME
public static final String NOTIFICATION_BRIDGE_MODE_METADATA_NAME
The name of the meta-data element in the Wear app manifest for specifying whether notifications should be bridged from the phone to the wearable.
Constant Value: "com.google.android.wearable.notificationBridgeMode"
NOTIFICATION_BRIDGE_MODE_NO_BRIDGING
public static final String NOTIFICATION_BRIDGE_MODE_NO_BRIDGING
The value of the notification bridge mode meta-data element in the case where the Wear app does not want notifications to be bridged from the phone to the wearable.
Constant Value: "NO_BRIDGING"