我在 Android Studio 中工作并尝试在特定日期和时间生成通知。一切顺利,但是,在我的服务类中,无法解析 setLatestEventInfo() 方法。
我在 eclipse 中做了同样的演示,eclipse 没有任何问题。
我不想在任何按钮的点击或任何手动事件生成上生成通知,而是在我指定的特定日期和时间生成通知。

Service类的代码如下:

public class MyRemiderService extends Service {
private NotificationManager mManager;

@Override
public IBinder onBind(Intent intent) {

    return null;
}

@Override
public void onCreate() {

    super.onCreate();
}

@Override
@Deprecated
public void onStart(Intent intent, int startId) {
    super.onStart(intent, startId);
    mManager = (NotificationManager) getApplicationContext()
            .getSystemService(getApplicationContext().NOTIFICATION_SERVICE);
    Intent intent1 = new Intent(this.getApplicationContext(),
            HomeActivity.class);
    Notification notification = new Notification(R.drawable.notification_template_icon_bg,
            "This is a test message!", System.currentTimeMillis());
    intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP
            | Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingNotificationIntent = PendingIntent.getActivity(
            this.getApplicationContext(), 0, intent1,
            PendingIntent.FLAG_UPDATE_CURRENT);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;
    notification.setLatestEventInfo(this.getApplicationContext(),
            "AlarmManagerDemo", "This is a test message!",
            pendingNotificationIntent);


    mManager.notify(0, notification);
}

@Override
public void onDestroy() {

    super.onDestroy();
}

请让我提供有关它的解决方案..谢谢。

最佳答案

正如这里看到的 setLatestEventInfo :

从 Notification 类中删除了 setLatestEventInfo 方法

要创建 Notification 使用 Notification.Builder 类:

Notification.Builder builder = new Notification.Builder(MyRemiderService.this);
.....
builder.setSmallIcon(R.drawable. notification_template_icon_bg)
       .setContentTitle("ContentTitle")
       .....
       .setContentIntent(pendingNotificationIntent);

Notification notification = builder.getNotification();
notificationManager.notify(R.drawable.notification_template_icon_bg, notification);

10-08 12:33