server


服务如何启动

startService(Intent(this, AlarmService::class.java))

服务方法如下

class AlarmService : Service() {
    override fun onBind(intent: Intent): IBinder {
        TODO("Return the communication channel to the service.")
    }

    override fun onCreate() {
        super.onCreate()
        Log.e("xiaoyou","服务已启动")
        // 这里我们获取数据库里面所有的闹钟信息
        AlarmDatabase.getAllAlarm()
    }

}

使用bindservice方式启动


文章作者: 小游
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 小游 !
  目录