我需要一些帮助,因为我是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);
}
});
答案 0 :(得分:1)
Notification.Builder.build()
是API级别16.您可能没有将目标设置为v16和/或下载v16 android开发工具包,因此Eclipse不知道该方法,因此将其标记为无效。
答案 1 :(得分:0)
如果您使用的是android.support.v4,请使用Android v4 Support中的NotificationCompat