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

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


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

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

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

  <ปุ่ม android:layout_width="match_parent" android:layout_height="wrap_content" android:onClick="startService" android :text="เริ่มบริการ" /> <ปุ่ม android:layout_width="match_parent" android:layout_height="wrap_content" android:onClick="stopService" android:text="Stop Service" />

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

<ก่อนหน้า>นำเข้า android.content.Intentimport android.os.Bundleimport android.view.Viewimport android.widget.EditTextimport androidx.appcompat.app.AppCompatActivityimport androidx.core.content.ContextCompatclass MainActivity :AppCompatActivity () { lateinit var editText:แก้ไขข้อความแทนที่ fun onCreate (savedInstanceState:Bundle?) { super.onCreate (savedInstanceState) setContentView (R.layout.activity_main) title ="KotlinApp" editText =findViewById (R.id.editText) } fun startService (ดู:ดู) { อินพุต val:String =editText.text.toString () val serviceIntent =Intent (นี่ ExampleService::class.java) serviceIntent.putExtra ("inputExtra" อินพุต) ContextCompat.startForegroundService (นี่ serviceIntent) } fun stopService (ดู:ดู) { val serviceIntent =เจตนา (นี่ ExampleService::class.java) stopService(serviceIntent) }}

ขั้นตอนที่ 4 − สร้างคลาสใหม่สำหรับบริการ (ExampleService.kt) และเพิ่มสิ่งต่อไปนี้ -

<ก่อนหน้า>นำเข้า android.app.*import android.content.Intentimport android.os.Buildimport android.os.IBinderimport androidx.annotation.RequiresApiimport androidx.core.app.NotificationCompatclass ExampleService:บริการ () { val ส่วนตัว channelId ="การแจ้งเตือนจาก บริการ" @RequiresApi(Build.VERSION_CODES.O) แทนที่ fun onCreate() { super.onCreate() if (Build.VERSION.SDK_INT>=26) { val channel =if (Build.VERSION.SDK_INT>=Build.VERSION_CODES. O) { NotificationChannel (channelId, "Channel human readable title", NotificationManager.IMPORTANCE_DEFAULT ) } else { TODO("VERSION.SDK_INT

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

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

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

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

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