我需要在用户关闭应用时进行一些http调用。它不应该与活动相关联,而应该与应用程序相关联。
是否有可能让应用程序关闭事件?
有办法吗?如果有,怎么样?
答案 0 :(得分:0)
在所有活动中覆盖此方法,并将代码放入OnDestroy
@Override
protected void onDestroy() {
Log.i(TAG, "onDestroy()...");
super.onDestroy();
//Put your http calls code here . It always called when your activity close
}