If I have a Handler handler = new Handler()
and run a delayed task for it handler.postDelayed(xxx, xxx)
, is that possible to check has the postDelayed()
was called or not?
Advertisement
Answer
is that possible to check has the postDelayed() was called or not?
One quick fix, in method assign some boolean
variable to true and then just perform checking.