服务如何启动
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方式启动