📅  最后修改于: 2020-10-11 05:58:48             🧑  作者: Mango
Android Notification提供了有关应用程序中发生的操作的简短及时信息,即使该应用程序未运行也是如此。该通知将显示图标,标题和一些内容文本。
使用NotificationCompat.Builder对象设置Android通知的属性。下面列出了一些通知属性:
在此示例中,我们将创建一条通知消息,单击该消息将启动另一个活动。
在activity_main.xml文件中添加以下代码。
创建一个名为activity_notification_view.xml的活动,并添加以下代码。单击通知将启动此活动。 TextView用于显示通知消息。
在MainActivity.java类中添加以下代码。在此类中,单击按钮将调用addNotification()方法,在此方法中我们实现NotificationCompat.Builder对象以设置通知属性。 NotificationManager.notify()方法用于显示通知。 Intent类用于在点击通知时调用另一个活动(NotificationView.java)。
package example.javatpoint.com.androidnotification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button = findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
addNotification();
}
});
}
private void addNotification() {
NotificationCompat.Builder builder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.messageicon) //set icon for notification
.setContentTitle("Notifications Example") //set title of notification
.setContentText("This is a notification message")//this is notification message
.setAutoCancel(true) // makes auto cancel of notification
.setPriority(NotificationCompat.PRIORITY_DEFAULT); //set priority of notification
Intent notificationIntent = new Intent(this, NotificationView.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
//notification message will get at NotificationView
notificationIntent.putExtra("message", "This is a notification message");
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(pendingIntent);
// Add as notification
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(0, builder.build());
}
}
NotificationView.java类接收通知消息,并显示在TextView中。点按通知时将调用此类。
package example.javatpoint.com.androidnotification;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
public class NotificationView extends AppCompatActivity {
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notification_view);
textView = findViewById(R.id.textView);
//getting the notification message
String message=getIntent().getStringExtra("message");
textView.setText(message);
}
}
AndroidNotification
NotificationView
在AndroidManifest.xml文件中添加以下代码。
输出: