Я вызвал свой класс обслуживания, намереваясь передать туда значения, и я хочу отображать эти тексты на экране (требуется разрешение экрана для дроу), даже если приложение закрыто. Тем не менее, он работает, когда приложение работает, но когда я закрываю приложение, метод onStartCommand(intent: Intent?, flags: Int, startId: Int)
запускается снова с нулевым значением намерения, что является причиной того, что я теряю свои данные, полученные из намерения. Я попытался передать эти значения в sharedPreference, когда onStartCommand сначала запускается в приложении, а затем, если приложение закрывается, я не могу получить данные из sharedPreference. Как я могу получить данные в фоновом режиме, от room database
, sharedPreference
или intent
, и что является лучшей практикой?
class PopupService: Service() {
override fun onBind(intent: Intent?): IBinder? {
return null
}
//Initializing value
var interval:Long = 500
val mTimer = Timer()
lateinit var pref: SharedPreferences
lateinit var wm:WindowManager
lateinit var textView:TextView
lateinit var data:ArrayList<String>
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
Log.d("MyNameisNotName","Started")
//I am getting arrayList and storing to data.
if(intent!= null)
data = intent.getStringArrayListExtra("messages")
//Initializing values to popup texts on screen
wm = this.getSystemService(Context.WINDOW_SERVICE) as WindowManager
val inflater: LayoutInflater = this.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
textView = inflater.inflate(R.layout.messages, null) as TextView
val data = App.getDb
mTimer.scheduleAtFixedRate(TimeDisplayTimerTask(wm,textView,data), 0, interval)
return super.onStartCommand(intent, flags, startId)
}
//Function to handle action periodiaclly in given duration
class TimeDisplayTimerTask(val wm: WindowManager,val textView: TextView,val db:AppDb) : TimerTask() {
var params = WindowManager.LayoutParams(
WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.WRAP_CONTENT,
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O)
WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY
else
WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
or WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
or WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH,
PixelFormat.TRANSLUCENT)
val handler = Handler()
fun textDecoration(textView: TextView,data:List<Memo>) {
try {
textView.text = data[Random.nextInt(data.size-1)].text
textView.textSize = 45f
textView.setBackgroundColor(Color.WHITE)
textView.setTextColor(Color.BLUE)
textView.setPadding(10, 10, 10, 10)
}catch (e:Exception){
}
}
override fun run() {
val myRun = Runnable{
val displaymetrics = DisplayMetrics()
wm.defaultDisplay.getMetrics(displaymetrics)
val width = displaymetrics.widthPixels
val height = displaymetrics.heightPixels
params.x = Random.nextInt(width - 10)
params.y = Random.nextInt(height - 10)
var data = db.getMemoDao.getAll().value
Log.d("MyNameisNotName","Hi there"+data?.size.toString())
if(data!=null)
textDecoration(textView,data)
if (textView.isShown)
wm.removeView(textView)
wm.addView(textView, params)
}
handler.post(myRun)
}
override fun cancel(): Boolean {
if(textView.isShown)
wm.removeView(textView)
return super.cancel()
}
}
override fun onDestroy() {
super.onDestroy()
if(textView.isShown)
wm.removeView(textView)
try{
mTimer.cancel()
}catch (e:Exception){
}
Log.d("MyNameisNotName","Destroyed")
}
} ```