Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Android

วิธีลบการแจ้งเตือนจากแถบการแจ้งเตือนโดยทางโปรแกรมใน Android


ตัวอย่างนี้สาธิตเกี่ยวกับวิธีการลบการแจ้งเตือนจากแถบการแจ้งเตือนโดยทางโปรแกรมใน Android

ขั้นตอนที่ 1 − สร้างโครงการใหม่ใน Android Studio ไปที่ไฟล์ ⇒ โครงการใหม่และกรอกรายละเอียดที่จำเป็นทั้งหมดเพื่อสร้างโครงการใหม่

ขั้นตอนที่ 2 − เพิ่มรหัสต่อไปนี้ใน res/layout/activity_main.xml

<ก่อน> <ปุ่ม android :onClick ="createNotification" android :layout_width ="match_parent" android :layout_height ="wrap_content " android :layout_centerInParent ="จริง" android :layout_margin ="16dp" android :text ="สร้างการแจ้งเตือน" />

ขั้นตอนที่ 3 − เพิ่มรหัสต่อไปนี้ใน res/layout/custom_notification_layout.xml

<ก่อน>

ขั้นตอนที่ 4 − เพิ่มรหัสต่อไปนี้ใน src/MainActivity

แพ็คเกจ app.tutorialspoint.com.notifyme;นำเข้า android.app.NotificationChannel;นำเข้า android.app.NotificationManager;นำเข้า android.os.Bundle;นำเข้า android.support.v4.app.NotificationCompat;นำเข้า android.support.v7 .app.AppCompatActivity; นำเข้า android.view.View; นำเข้า android.widget.RemoteViews; MainActivity คลาสสาธารณะขยาย AppCompatActivity { สตริงสุดท้ายแบบคงที่สาธารณะ NOTIFICATION_CHANNEL_ID ="10001"; สตริงคงที่ส่วนตัวสุดท้าย default_notification_channel_id ="default"; @Override ป้องกันโมฆะ onCreate (Bundle saveInstanceState) { super .onCreate (savedInstanceState); setContentView(R.layout. activity_main ); onNewIntent(getIntent()); } NotificationManager mNotificationManager; int alertId =0; โมฆะสาธารณะ createNotification (ดูมุมมอง) { RemoteViews contentView =RemoteViews ใหม่ (getPackageName () , R.layout custom_notification_layout ); mNotificationManager =(NotificationManager) getSystemService ( NOTIFICATION_SERVICE ); NotificationCompat.Builder mBuilder =ใหม่ NotificationCompat.Builder(MainActivity. this, default_notification_channel_id ); mBuilder.setContent(contentView); mBuilder.setSmallIcon(R.drawable. ic_launcher_foreground ); mBuilder.setAutoCancel( จริง ); if (android.os.Build.VERSION. SDK_INT>=android.os.Build.VERSION_CODES. O ) { ความสำคัญจริง =NotificationManager IMPORTANCE_HIGH; NotificationChannel alertChannel =new NotificationChannel( NOTIFICATION_CHANNEL_ID , "NOTIFICATION_CHANNEL_NAME" , ความสำคัญ); mBuilder.setChannelId ( NOTIFICATION_CHANNEL_ID ); ยืนยัน mNotificationManager !=null; mNotificationManager .createNotificationChannel (ช่องแจ้งเตือน); } alertId =( int ) ระบบ ปัจจุบันเวลามิลลิวินาที (); ยืนยัน mNotificationManager !=null; mNotificationManager .notify( notificationId , mBuilder.build()); } โมฆะ removeNotification สาธารณะ (ดูมุมมอง) { ถ้า ( notificationId !=0 ) mNotificationManager .cancel ( notificationId ); }}

ขั้นตอนที่ 5 − เพิ่มรหัสต่อไปนี้ใน AndroidManifest.xml

<ก่อน><แสดง xmlns:android ="https://schema.android.com/apk/res/android" package ="app.tutorialspoint.com.notifyme"> <หมวดหมู่ android :name ="android.intent.category.LAUNCHER" />

มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -

วิธีลบการแจ้งเตือนจากแถบการแจ้งเตือนโดยทางโปรแกรมใน Android