我需要一些帮助,因为我是 Android 新手。我似乎无法掌握如何构建一个新的 Notification.Builder 实例。可悲的是,我正在关注的教程使用了一个较旧的构造函数,在仔细阅读了 android 参考文档之后清楚地说明了它。我创建了一个按钮,当您按下它时,它只会提供一个简单的通知。找到其他示例后,所有代码似乎都可以,但是在构建方法下的 Eclipse 中出现红线错误。任何帮助将非常感激:
Button b = (Button) findViewById(R.id.button1);
b.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Context context = Main.this;
Intent intent = new Intent(context, Main.class);
PendingIntent pending = PendingIntent.getActivity(Main.this, 0, intent, 0);
Notification noti = new Notification.Builder(Main.this)
.setTicker("This is important!")
.setContentTitle("PLEASE READ!")
.setContentText("Important message from me!")
.setSmallIcon(android.R.drawable.stat_notify_more)
.setWhen(System.currentTimeMillis())
.setContentIntent(pending)
.build();
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(0, noti);
}
});