微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android Studio实现点击按钮发送系统通知

Button

<Button
   android:id="@+id/btn"
   android:text="发送通知"
   android:backgroundTint="@color/red"
   android:layout_width="100dp"
   android:layout_height="60dp"
   tools:ignore="MissingConstraints" />

绑定按钮

Button btn =  findViewById(R.id.btn);

声明变量

private notificationmanager manager;
private Notification notification1;

创建通知

manager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
            NotificationChannel channel = new NotificationChannel("web","通知",notificationmanager.IMPORTANCE_HIGH);
            manager.createNotificationChannel(channel);
        }
notification1 = new NotificationCompat.Builder(this,"web")
           .setContentTitle("点击通知")
           .setContentText("你点击了按钮")
           .setSmallIcon(R.drawable.ic_launcher_background)
           .build();

按钮点击事件

btn.setonClickListener(new View.OnClickListener() {
      @Override
       public void onClick(View view) {
           manager.notify(1,notification1);
       }
});

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐