Back to project page AndroidWearable-Samples.
The source code is released under:
Apache License
If you think the Android project AndroidWearable-Samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.android.support.wearable.notifications; /*from www . jav a 2s .c o m*/ import android.content.Context; import android.support.v4.app.NotificationCompat; /** * Base class for notification actions presets. */ public abstract class ActionsPreset extends NamedPreset { public ActionsPreset(int nameResId) { super(nameResId); } /** Apply the priority to a notification builder */ public abstract void apply(Context context, NotificationCompat.Builder builder, NotificationCompat.WearableExtender wearableOptions); }