我正在尝试创建安排通知的方法。在该方法中,我初始化了一个AlarmManager,它将允许我按需接收Intent。但是,我的代码中出现以下语法错误:



在下一行:

 var alarmManager = getSystemService(Context.ALARM_SERVICE) as AlarmManager

下面是我的代码:
package com.example.notificationapp

import android.app.AlarmManager
import android.app.NotificationManager
import android.app.PendingIntent
import android.app.PendingIntent.getActivity
import android.content.Context
import android.content.Intent
import androidx.core.app.NotificationCompat
import androidx.core.content.ContextCompat.getSystemService
import java.security.AccessController.getContext
import java.util.*

// Channel

class Notification(context:Context, notificationManager: NotificationManager, title:String, description:String, date: Date) {
    // Attributes
    private lateinit var context:Context;
    private var title:String = ""
    private var description:String = ""
    private lateinit var date:Date;
    private lateinit var notificationManager:NotificationManager;

    // Initialization
    init {
        // Download the constructor parameters into the object's attributes
        this.context = context
        this.title = title
        this.description = description
        this.date = date
        this.notificationManager = notificationManager
    }

    // Method to set the notification at a specific time
    fun setNotificationAtTime(time:Date) {
        var notificationIntent = Intent(this.context, NotificationBroadcast::class.java)
        var pendingNotificationIntent = PendingIntent.getBroadcast(this.context,
            0, notificationIntent, 0)

        // Initialize an AlarmManager that allows us to receive intents on demand
        var alarmManager = getSystemService(Context.ALARM_SERVICE) as AlarmManager

        val builder = NotificationCompat.Builder(context, "com.example.notificationapp")
    }
}

最佳答案

这是因为您使用的是ContextCompat.getSystemService而不是Context.getSystemService

因此,您在这里有两个选择:

  • 使用正确的签名使用ContextCompat.getSystemService:

  • getSystemService(context, AlarmManager::class.java)
    
  • 使用Context.getSystemService删除导入语句:

  • androidx.core.content.ContextCompat.getSystemService
    

    09-11 17:12