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状态直接放置到任务栈的顶端,则你的程序又可以继续执行了。

    消除警告解决办法:

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

  • 相关阅读:
    七款HTML在线编辑器[下载]
    三层开发框架
    vs2005快捷键
    Javascript的IE和Firefox兼容性汇编
    序列化
    [Web2.0]web2.0中的tag及其技术实现
    结合FlyTreeView 无限级别的分类
    sql server中分布式查询随笔(链接服务器(sp_addlinkedserver)和远程登录映射(sp_addlinkedsrvlogin)使用小总结)
    FlyTreeView4.3.2.82 破解方法 (NineRays.Web.UI.WebControls.FlyTreeView)
    asp.net 获取cpu序列号 硬盘ID 网卡硬地址
  • 原文地址:https://www.cnblogs.com/niuge/p/4670764.html
Copyright © 2011-2022 走看看