サービスからインターフェイスを実装しようとしています(推測すると良い方法ではありません)が、インターフェイスメソッドは呼び出されません。バックサービスに対話する方法サービスからインターフェイスメソッドを呼び出す
class TrackerService : Service(), LocationUpdateListener {
override fun onCreate() {
startLocationTracking(context) // context as this service with LocationUpdateListener, next it should trigger onLocationUpdated after some time
}
override fun onLocationUpdated(location: Location?) {
// Not called
}
// ... Service lifecycle methods
}
、私はそれにいくつかのアクションを行う際のonCreateですか?