zoukankan      html  css  js  c++  java
  • ActivityManager: Warning: Activity not started, its current task has been brought to the front 的的问题

    原文地址:http://blog.csdn.net/leather0906/article/details/6593003

    运行android程序的时候提示:ActivityManager: Warning: Activity not started, its current task has been brought to the front

    但是在模拟器上显示出了程序界面,后来google了一下,

    有一组提问和回答引起了我的注意:

    Hi,

    I have a very simple android project. I got the following error message when I try to run it. The emulator is running but the application doesn't come up. I couldn't find any useful information online. Can anyone help me?

    Thanks,

    arning: Activity not started, its current task has been brought to the front public class Profile extends Activity { /Button button1; CheckBox check1, check2; EditText text1;/

    回答:

    Hi Lewis!

    It is not an error message, it is a warning. What the system is trying to tell you: The application on the device is the same as your application in Eclipse. And because the application is already running on the device, the system tells you that it is not going to kill and restart it, but bring the activity of your already running app into the foreground. This is pretty normal. ;-)

    The warning will not continue if you edit your code and run it (because the app is then killed, reinstalled and started) or if you kill your process on the phone, e.g. via the DDMS.
    解释:

    这个不是Android平台的Bug,而是Android本身就是这样一种处理机制。
    我们在Android平台下,通 过返回按钮,或者程序本身的退出操作,去结束一个进程的时候,实际上Android虚拟机未必会将这个进程真正的结束掉,在内存允许的情况下,这个程序会 以缓存的形式存在Android虚拟机中。只有在内存不足的情况下时,Android系统会清理长时间不被激活的任务,以为其他程序提供内存。
    Android这样做,是为了你下一次更加快速的启动这个程序。
    所以,出现楼主这种情况,是在你的程序没有发生任何变化,并且内存足够的情况下,会将上一次执行的程序,从缓存Cached状态直接放置到任务栈的顶端,则你的程序又可以继续执行了。

    消除警告解决办法:

    退出虚拟机的程序从新运行一遍。

  • 相关阅读:
    进入Docker 报错
    Oauth一直无限重定向
    jquery.click() not working in iOS
    IOS 系统 form 表单提交的问题;一直当前页面刷新
    Word 搜索功能显示bug
    百度脑图bug
    微信分享链接添加参数后缩略图不显示如何解决?
    微信分享到朋友圈 QQ空间 代码实现
    文献复现 | The support of human genetic evidence for approved drug indications
    生物医药领域 | 知名投资人 | VC | PE | IBD | 公募 | 私募
  • 原文地址:https://www.cnblogs.com/niuge/p/4670764.html
Copyright © 2011-2022 走看看