我正在尝试编写一个简单的通知应用程序。它所做的只是在单击按钮时通知通知。
我根据this教程逐步编写了我的应用。
我不知道应将哪个通道ID传递给构造函数,以使该应用程序正常运行。现在,该应用程序不执行任何操作(也不会崩溃)。我想问题出在变量NotificationCompat.Builder notifyBuilder
的初始化中。我不知道要传递什么,所以只传递了一个任意字符串"0"
。
我的问题是我应该将什么传递给NotificationCompat.Builder
的构造方法,它将使应用程序正常工作?
这是MainActivity:
public class MainActivity extends AppCompatActivity {
private Button mNotifyButton;
private static final int NOTIFICATION_ID = 0;
private static final String NOTIFICATION_ID_STRING = "0";
private NotificationManager mNotifyManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mNotifyButton = (Button) findViewById(R.id.notificationButton);
}
public void sendNotification(View view) {
mNotifyManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
NotificationCompat.Builder notifyBuilder
=new NotificationCompat.Builder(this, NOTIFICATION_ID_STRING)
.setContentTitle("You've been notified!")
.setContentText("This is your notification text.")
.setSmallIcon(R.drawable.ic_android);
Notification myNotification = notifyBuilder.build();
mNotifyManager.notify(NOTIFICATION_ID, myNotification);
}
}
答案 0 :(得分:1)
private static final int NOTIFICATION_ID = 0;
此人标识您的通知。如果您发送多个具有相同ID的通知,则旧通知将被较新的通知取代。因此,如果要一次显示多个通知,则需要多个ID。
private static final String NOTIFICATION_ID_STRING = "0";
这是频道的ID。它告诉应该使用哪个通道发送该通知。您可以分配任何String
。您只需要确保对特定频道使用相同的String
即可。而且,如果您想创建更多渠道,则需要为它们使用不同的String
。
关于频道
在最新版本的Android(Android Oreo及更高版本)中,您可以使用不同的渠道来发送通知。这样,您就可以让用户自定义他要接收的通知。
例如,您有一个购物应用程序。然后,您可以使用一些频道,例如:
在该频道上发送通知之前,您应该创建它:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
CharSequence name = "Orders Notification";
String description = "Notifications about my order";
int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel channel = new NotificationChannel(NOTIFICATION_ID_STRING, name, importance);
channel.setDescription(description);
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
然后,您可以通过以下方式发送通知:
NotificationCompat.Builder notifyBuilder
= new NotificationCompat.Builder(this, name.toString())
您可以通过以下方式检查应用程序的所有频道:
Settings -> Apps -> App you want to check -> Notifications
某些应用只有一个频道。其他应用可能具有多个频道。
返回您的问题
因此,以您的示例为例,NOTIFICATION_ID_STRING
可以是任何字符串。您只需要在每次要在该特定频道上发送消息时使用"0"
。
而且,如果您创建新频道,请使用新字符串"channel1"
。
但是,您必须先创建频道,然后才能在其上发送通知:
// This ID can be the value you want.
private static final int NOTIFICATION_ID = 0;
// This ID can be the value you want.
private static final String NOTIFICATION_ID_STRING = "My Notifications";
public void sendNotification(View view) {
mNotifyManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//Create the channel. Android will automatically check if the channel already exists
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(NOTIFICATION_ID_STRING, "My Channel Name", NotificationManager.IMPORTANCE_DEFAULT);
channel.setDescription("My notification channel description");
mNotifyManager.createNotificationChannel(channel);
}
NotificationCompat.Builder notifyBuilder
= new NotificationCompat.Builder(this, NOTIFICATION_ID_STRING)
.setContentTitle("You've been notified!")
.setContentText("This is your notification text.")
.setSmallIcon(R.drawable.ic_android);
Notification myNotification = notifyBuilder.build();
mNotifyManager.notify(NOTIFICATION_ID, myNotification);
}
您可以找到有关它们的更多信息HERE