- 首先需要一个notificationmanager对象来对通知进行管理。代码如下
notificationmanager manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);
2.使用一个Builder构造器来创建一个Notification对象
Notification notification = new NotificationCompat.Builder(content).build();
3.当然,上面的代码只是创建了一个空的Notification对象,我们可以在.build()前面添加多个设置方法来对Notification进行设置
Notification notification = new NotificationCompat.Builder(MainActivity.this)
.setContentTitle("牛皮哄哄") //设置通知标题
.setContentText("精神小伙") //设置通知内容
.setWhen(System.currentTimeMillis()) //指定通知被创建的时间
.setSmallIcon(R.mipmap.ic_launcher) //使用小图标
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)) //使用大图片
.build();
4.以上的工作完成之后只需要调用notificationmanager的notify()方法就可以让通知显示出来了
activity_main.xml代码如下
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="发送通知"
/>
</LinearLayout>
MainActivity代码如下所示
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = findViewById(R.id.button);//获取点击按钮
button.setonClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
notificationmanager manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);
//获取notificationmanager实例
Notification notification = new NotificationCompat.Builder(MainActivity.this)
.setContentTitle("牛皮哄哄")//通知标题
.setContentText("精神小伙") //通知内容
.setWhen(System.currentTimeMillis()) //指定通知被创建的时间
.setSmallIcon(R.mipmap.ic_launcher)//使用小图标
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher))//使用大图片
.build();
manager.notify(1,notification);
}
});
}
}
现在已经完成了通知的创建工作,现在开始点击运行一下,你会惊奇的发现压根就没有效果!!!! 这时百度过后才发现Android8.0以上的的通知要设置渠道,否则就无法显示。修改好的代码如下
public class MainActivity extends AppCompatActivity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = findViewById(R.id.button);//获取点击按钮
button.setonClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
notificationmanager manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);//获取notificationmanager实例
NotificationCompat.Builder builder;//创建通知对象
if (Build.VERSION.SDK_INT >= 26) {//判断Android的版本
NotificationChannel channel = new NotificationChannel(String.valueOf(1), "name",
notificationmanager.IMPORTANCE_HIGH); //当Android版本大于等于8时,创建通知渠道(Notification Channels)
manager.createNotificationChannel(channel);
builder = new NotificationCompat.Builder(MainActivity.this,String.valueOf(1));//获取
}else {
builder = new NotificationCompat.Builder(MainActivity.this);//当版本低于8时使用
}
builder.setContentTitle("牛皮哄哄")//通知标题
.setContentText("精神小伙") //通知内容
.setWhen(System.currentTimeMillis()) //指定通知被创建的时间
.setSmallIcon(R.mipmap.ic_launcher) //使用小图标
.setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)); //使用大图片
Notification notification = builder.build();
manager.notify(1,notification);
}
});
}
}
在上面的代码中加了if语句,这时就能适应所有的Android版本了。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。