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

จะแสดงจำนวนการแจ้งเตือนในตัวเปิดใช้แอพ Android โดยใช้ Kotlin ได้อย่างไร


ตัวอย่างนี้สาธิตวิธีแสดงจำนวนการแจ้งเตือนในตัวเปิดใช้แอป Android โดยใช้ Kotlin

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

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

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

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

<ก่อนหน้า นำเข้า android.app.Notification Channel android.app.NotificationManagerimport android.app.PendingIntentimport android.content.Contextimport android.content.Intentimport android.os.Buildimport android.os.Bundleimport android.view.Viewimport androidx.appcompat.app AppCompatActivityimport androidx.core.app.NotificationCompatclass MainActivity :AppCompatActivity() { var count =0 private val channelId ="10001" private val defaultChannelId ="default" แทนที่ fun onResume() { super.onResume() count =0 } แทนที่ fun onCreate (savedInstanceState:Bundle?) { super.onCreate (savedInstanceState) setContentView (R.layout.activity_main) title ="KotlinApp" } สร้างการแจ้งเตือน (ดู:ดู) { นับ ++ val alertIntent =เจตนา (applicationContext, MainActivity::class.java) alertIntent.putExtra("fromNotification", true) notificationIntent.flags =Intent.FLAG_ACTIVITY_CLEAR_TOP หรือ Intent.FLAG_ACTIVITY_SINGLE_T OP val pendingIntent =PendingIntent.getActivity (นี้ 0, alertIntent, 0) val alertManager =getSystemService (Context.NOTIFICATION_SERVICE) เป็น NotificationManager val builder =NotificationCompat.Builder (applicationContext, defaultChannelId) builder.setContentTitle ("การแจ้งเตือนของฉัน") (pendingIntent) builder.setContentText("Notification Listener Service Example") builder.setSmallIcon(R.drawable.ic_launcher_foreground) builder.setAutoCancel(true) builder.setBadgeIconType(NotificationCompat.BADGE_ICON_SMALL) builder.setNumber(นับ) ถ้า (นับ) SDK_INT>=Build.VERSION_CODES.O) { ความสำคัญ =NotificationManager.IMPORTANCE_HIGH val alertChannel =NotificationChannel (channelId, "NOTIFICATION_CHANNEL_NAME", ความสำคัญ) builder.setChannelId (channelId) notificationManager.createNotificationChannel (notificationChannel) } onManager.notify(System.currentTimeMillis().toInt(), builder.build()) }}

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

  <กิจกรรม android:name=".MainActivity">      

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

จะแสดงจำนวนการแจ้งเตือนในตัวเปิดใช้แอพ Android โดยใช้ Kotlin ได้อย่างไร