show Notification With Action - Android Android OS

Android examples for Android OS:Notification Show

Description

show Notification With Action

Demo Code

// Use of this source code is governed by the MIT license that can be found
import android.app.Notification;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.NotificationManagerCompat;
import android.support.v4.app.NotificationCompat.WearableExtender;
import android.support.v4.app.RemoteInput;

public class Main{
    private static int NOTIFICATION_ID = 0;
    public static void showNotificationWithAction(Context context) {
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse(""));
        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
                intent, 0);//www.  j a va 2 s  .c  om

        NotificationCompat.Action action = new NotificationCompat.Action.Builder(
                R.drawable.ic_launcher,
                context.getString(R.string.action_button), pendingIntent)
                .build();

        NotificationManagerCompat.from(context).notify(
                getNewID(),
                new NotificationCompat.Builder(context)
                        .setSmallIcon(R.drawable.ic_launcher)
                        .setContentTitle(
                                context.getString(R.string.action_title))
                        .setContentText(
                                context.getString(R.string.action_text))
                        .addAction(action).build());
    }
    private static synchronized int getNewID() {
        return NOTIFICATION_ID++;
    }
}

Related Tutorials