如何检查活动仍然在栈? [英] how to check if activity is still in the stack?

查看:106
本文介绍了如何检查活动仍然在栈?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么更好的办法来检查活动仍然在堆栈以便它叫回来?

 意向书我=新的意向书(getApplicationContext(),MyClass.class);
startActivity(ⅰ);
 

解决方案

看的 ActivityManager API

要获得ActivityManager的一个实例使用code:

  ActivityManager mngr =(ActivityManager)getSystemService(ACTIVITY_SERVICE);
 

what is the better way to check if the activity is still in the stack in order to call it back ?

Intent i = new Intent(getApplicationContext(),MyClass.class);
startActivity(i);

解决方案

Look at the ActivityManager API

To get an instance of the ActivityManager use this code:

ActivityManager mngr = (ActivityManager) getSystemService( ACTIVITY_SERVICE );

这篇关于如何检查活动仍然在栈?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆