码迷,mamicode.com
首页 > 其他好文 > 详细

ActivityManager: Warning: Activity not started, its current task has been brought to the front 的的问题

时间:2014-08-24 01:31:41      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   strong   for   ar   

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

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

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

  1. Hi,  
  2.   
  3. 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?  
  4.   
  5. Thanks,  
  6.   
  7. 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;/  


Answer:

  1. Hi Lewis!  
  2.   
  3. 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. ;-)  
  4.   
  5. 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状态直接放置到任务栈的顶端,则你的程序又可以继续执行了。

消除警告解决办法:

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

ActivityManager: Warning: Activity not started, its current task has been brought to the front 的的问题

标签:android   style   blog   http   color   io   strong   for   ar   

原文地址:http://www.cnblogs.com/hjtdlx/p/3932142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!