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

จะสร้างการแจ้งเตือนใน Android ได้อย่างไร?


ตัวอย่างนี้สาธิตเกี่ยวกับวิธีการสร้างการแจ้งเตือนใน Android

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

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

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

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

แพ็คเกจ app.tutorialspoint.com.notifyme;นำเข้า android.app.AlarmManager;นำเข้า android.app.PendingIntent;นำเข้า android.content.Intent;นำเข้า android.os.Bundle;นำเข้า android.support.v7.app.AppCompatActivity;นำเข้า android.view.View;นำเข้า java.util.Calendar;คลาสสาธารณะ MainActivity ขยาย AppCompatActivity { @Override ป้องกันโมฆะ onCreate (บันเดิลที่บันทึกไว้InstanceState) { super .onCreate (savedInstanceState); setContentView(R.layout. activity_main ); } โมฆะสาธารณะ createNotification (ดูมุมมอง) { Intent myIntent =เจตนาใหม่ (getApplicationContext () , NotifyService. class ); AlarmManager alarmManager =(AlarmManager) getSystemService ( ALARM_SERVICE ); ความตั้งใจที่รอดำเนินการ =ความตั้งใจที่รอดำเนินการ getService (นี้, 0 , myIntent , 0 ); ปฏิทินปฏิทิน =ปฏิทิน getInstance (); calendar.set(ปฏิทิน วินาที , 0 ); calendar.set(ปฏิทิน. นาที , 0 ); calendar.set(ปฏิทิน. ชั่วโมง , 0 ); calendar.set(ปฏิทิน. AM_PM , ปฏิทิน. AM ); calendar.add(ปฏิทิน DAY_OF_MONTH , 1 ); alarmManager.setRepeating(AlarmManager. RTC_WAKEUP , calendar.getTimeInMillis() , 1000 * 60 * 60 * 24 , อยู่ระหว่างดำเนินการ); }}

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

แพ็คเกจ app.tutorialspoint.com.notifyme;นำเข้า android.app.NotificationChannel;นำเข้า android.app.NotificationManager;นำเข้า android.app.PendingIntent;นำเข้า android.app.Service;นำเข้า android.content.Intent;นำเข้า android os.IBinder นำเข้า android.support.v4.app.NotificationCompat คลาสสาธารณะ NotifyService ขยายบริการ { สตริงสุดท้ายแบบคงที่สาธารณะ NOTIFICATION_CHANNEL_ID ="10001"; สตริงคงที่ส่วนตัวสุดท้าย default_notification_channel_id ="default"; NotifyService สาธารณะ () { } @Override สาธารณะ IBinder onBind (เจตนาเจตนา) { Intent notificationIntent =เจตนาใหม่ (getApplicationContext () , MainActivity คลาส); alertIntent.putExtra("fromNotification" , true ); alertIntent.setFlags(Intent. FLAG_ACTIVITY_CLEAR_TOP | Intent. FLAG_ACTIVITY_SINGLE_TOP ); ความตั้งใจที่รอดำเนินการ =ความตั้งใจที่รอดำเนินการ getActivity ( นี่ , 0 , การแจ้งเจตนา , 0 ); NotificationManager mNotificationManager =(NotificationManager) getSystemService( NOTIFICATION_SERVICE ); NotificationCompat.Builder mBuilder =ใหม่ NotificationCompat.Builder(getApplicationContext() , default_notification_channel_id ); mBuilder.setContentTitle( "การแจ้งเตือนของฉัน" ); mBuilder.setContentIntent(รอดำเนินการ); mBuilder.setContentText( "ตัวอย่างบริการผู้ฟังการแจ้งเตือน" ); 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 (ช่องแจ้งเตือน); } ยืนยัน mNotificationManager !=null; mNotificationManager.notify(( int ) ระบบ currentTimeMillis () , mBuilder.build()); โยน UnsupportedOperationException ใหม่ ( "ยังไม่ได้ใช้งาน" ); }}

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

<ก่อน> <หมวดหมู่ android :name ="android.intent.category.LAUNCHER" />

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

จะสร้างการแจ้งเตือนใน Android ได้อย่างไร?