gpt4 book ai didi

android - 使用 BroadcastReceiver 创建通知

转载 作者:IT老高 更新时间:2023-10-28 23:32:47 25 4
gpt4 key购买 nike

我尝试使用此代码创建通知:

private void setNotificationAlarm(Context context) 
{
Intent intent = new Intent(getApplicationContext() , MyNotification.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);

AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 1000 , pendingIntent);
Log.d("ME", "Alarm started");
}

public class MyNotification extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
Log.d("ME", "Notification started");

NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("My notification")
.setContentText("Hello World!");

NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, mBuilder.build());
}
}

这里是我的 Mainfest 声明:

<receiver
android:name=".MyNotification"
android:enabled="true"
android:exported="false" >
</receiver>

我现在的问题是,警报已生成但未显示通知。 BroadcastReceiver 在 mainfest 文件中声明,没有编译器或运行时错误。

我的第二个问题是 setLatestEventInfonew Notification 构造函数已被弃用。我可以用什么来代替它?

最佳答案

我认为你需要使用

PendingIntent.getBroadcast (Context context, int requestCode, Intent intent, int flags)

而不是 getService

关于android - 使用 BroadcastReceiver 创建通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16491631/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com