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


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

    消除警告解决办法:

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

  • 相关阅读:
    RUNOOB.COM-python网络编程-(python3.5.0)
    windows查看服务
    计算机网络里的一些理解
    如果面试有傻逼问道oracle怎么启动的
    推荐一个学习数据库的地方
    电脑中的驱动程序是什么,是干什么的
    Raspberry Pi 4B 之 Python开发
    Ubuntu20.04+EdgexFoundry边缘计算微服务搭建-----遇到的问题-----make build 被墙问题
    Raspberry Pi 4B + Ubuntu 20.04 server for arm64 的wifi配置
    关于PicoNeo开发环境的Unity3D+AndroidSDK配置
  • 原文地址:https://www.cnblogs.com/hjtdlx/p/3932142.html
Copyright © 2020-2023  润新知