本文介绍了删除回调处理程序无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经写调用该方法,每次间隔的处理程序。我想在删除处理程序上的destroy()。在code I的使用如下,在OnCreate()
I have written a handler that calls the method every time interval. I want to remove that handler in on destroy(). The code i use as follows, In Oncreate()
private final Handler _handler = new Handler();
public int DATA_INTERVAL = 30 * 1000;
Runnable getData;
getData = new Runnable()
{
@Override
public void run()
{
recieveData();
}
};
_handler.postDelayed(getData, DATA_INTERVAL);
和中的OnDestroy(),我使用,
and in ondestroy(), i use,
_handler.removeCallbacks(getData);
但removecallbacks无法正常工作。它退出活动后调用。
But removecallbacks not work. It calls after exiting the activity.
推荐答案
这篇关于删除回调处理程序无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!