【问题标题】:Make my notification clickable让我的通知可点击
【发布时间】:2015-10-28 10:25:53
【问题描述】:

我制作了一个应用程序,其中包含由警报管理器触发的通知,只有通知不可点击。我该怎么做?

来自 MainActivity 的代码:

private void scheduleNotification(Notification notification, int delay) {

    Intent notificationIntent = new Intent(this, NotificationPublisher.class);
    notificationIntent.putExtra(NotificationPublisher.NOTIFICATION_ID, 1);
    notificationIntent.putExtra(NotificationPublisher.NOTIFICATION, notification);
    PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);

    long futureInMillis = SystemClock.elapsedRealtime() + delay;
    AlarmManager alarmManager = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
    alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, futureInMillis, pendingIntent);
}

    private Notification getNotification(String titel, String content) {
    Notification.Builder builder = new Notification.Builder(this);
    builder.setContentTitle(titel);
    builder.setContentText(content);
    builder.setSmallIcon(R.mipmap.ic_launcher);
    return builder.build();
}

来自我的通知发布类的代码:

public class NotificationPublisher extends BroadcastReceiver {

public static String NOTIFICATION_ID = "notification-id";
public static String NOTIFICATION = "notification";

public void onReceive(Context context, Intent intent)
{

    NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);

    Notification notification = intent.getParcelableExtra(NOTIFICATION);
    int id = intent.getIntExtra(NOTIFICATION_ID, 0);
    notificationManager.notify(id, notification);

}

}

【问题讨论】:

标签: android android-intent android-notifications android-pendingintent


【解决方案1】:

你可能正在寻找方法

setContentIntent(PROVIDE_YOUR_PENDING_INTENT);

当用户点击通知时,您需要提供一个待定意图,以将用户重定向到您想要重定向的位置。

参考:http://developer.android.com/reference/android/app/Notification.Builder.html#setContentIntent(android.app.PendingIntent)

【讨论】:

    猜你喜欢
    • 2016-04-28
    • 2014-04-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多