【已解决】Android 如何让应用在后台运行

应用在后台跑,这种说法可能不够准确,就是说应用没有finish退出,但也不在前台的状态,例如应用执行中点击了home键一样。如何实现呢?

要点:

退回后台是执行了home键,activity分别执行了onPause和onStop,应用没有被销毁,退回后台而已,再次运行应用只要执行onResume就可以了。

 完全退出,执行finishactivity会执行onPause,onStoponDestroy,应用被销毁,会被系统优先回收,再次运行应用要执行onCreate重新开始。

1.执行home键

private ResolveInfo homeInfo;

public void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       setContentView(R.layout.main);

        PackageManager pm = getPackageManager();

        homeInfo =pm.resolveActivity(newIntent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_HOME), 0);

//工作内容

 

//工作内容

    goToIdle();

}

 

 

private void goToIdle(){

        ActivityInfo ai =homeInfo.activityInfo;

        Intent startIntent= new Intent(Intent.ACTION_MAIN);

       startIntent.addCategory(Intent.CATEGORY_LAUNCHER);

       startIntent.setComponent(new ComponentName(ai.packageName,

                ai.name));

       startActivitySafely(startIntent);

    }

  

    voidstartActivitySafely(Intent intent) {

       intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

        try {

           startActivity(intent);

        } catch(ActivityNotFoundException e) {

           Toast.makeText(this, "work wrongly",

                   Toast.LENGTH_SHORT).show();

        } catch(SecurityException e) {

           Toast.makeText(this, "notsecurity",Toast.LENGTH_SHORT).show();

           Log.e(TAG,"Launcher does not have the permission to launch "

                                    + intent

                                    + ".Make sure to create a MAIN intent-filter for the corresponding activity "

                                    + "oruse the exported attribute for this activity.",

                           e);

        }

    }

 

2.back键重写执行home键功能

public boolean onKeyDown(int keyCode, KeyEvent event) {

        if (keyCode ==KeyEvent.KEYCODE_BACK) {

            goToIdle();

            return true;

        } else

            returnsuper.onKeyDown(keyCode, event);

    }

 

 

3.重写finish(),

    @Override

    public void finish() {

       //super.finish();//activity永远不会自动退出了,而是处于后台。

       moveTaskToBack(true);

    }

补充:

本人在做传感器数据的采集中,当程序界面退出(按back键,或者按home键)时,数据就不会输出。所以我尝试做如下简单修改,取得理想效果,故在此分享。

未修改前代码:

protected void onStop() {
		super.onStop();
		sm.unregisterListener(this);
	}

修改后代码(达到自己想要效果):

protected void onStop() {
		super.onStop();
//		sm.unregisterListener(this);  //将该行注释掉,从而保证在退出时不注销传感器监听器
	}

时间: 2024-10-07 17:15:09

【已解决】Android 如何让应用在后台运行的相关文章

android: DOC命令:查看后台运行的activity:

DOC命令:查看后台运行的activity: adb shell dumpsys activity running activity: 模拟器曾经运行过的 activity:

[已解决]springBoot 中添加 dev-tools后,运行程序报错Unenhance strategy

发生条件:在pom.xml中增加dev-tools的依赖,程序启动后,调用程序接口报错 问题现象: ------------------------------------------------------------- Registered concrete types: 5 (approximate size: 630.7 kB) [interface java.util.Collection] : ArrayList<Object> [interface java.util.Map]

【已解决】Android微信开放平台,申请移动应用的 应用签名 如何获取

你看到的这个文章来自于http://www.cnblogs.com/ayanmw 在微信开放平台,申请移动应用的时候: https://open.weixin.qq.com/cgi-bin/appcreate?t=manage/createMobile&type=app&lang=zh_CN&token=60682ddfbd9106b1c4b1f9d70f56c98e5f728905 下一步后需要填写应用签名 这可难倒了我了..签名 keystore文件可没有这么简单. "

LigerUi-js中ajax前台调用后台Json格式转换!(已解决)

LigerUi-js中ajax前台调用后台Json格式转换!(已解决) success: function (data, status) { var aaa = JSON2.stringify(data); alert(aaa ); } LigerUi-js中ajax前台调用后台Json格式转换!(已解决),布布扣,bubuko.com

【已解决】unity4.2.0f4 导出Android工程报错:Error building Player: ArgumentException: Illegal characters in path.

你看到的这个文章来自于http://www.cnblogs.com/ayanmw 使用unity3D开发的一个客户端,需要导出为Android工程,然后接入一些第三方android SDK. unity版本 操作系统为: OS 名称: Microsoft Windows 7 旗舰版 OS 版本: 6.1.7601 Service Pack 1 Build 7601 OS 制造商: Microsoft Corporation OS 配置: 独立工作站 OS 构件类型: Multiprocessor

Android中UI线程与后台线程交互设计的5种方法

我想关于这个话题已经有很多前辈讨论过了.今天算是一次学习总结吧. 在android的设计思想中,为了确保用户顺滑的操作体验.一 些耗时的任务不能够在UI线程中运行,像访问网络就属于这类任务.因此我们必须要重新开启一个后台线程运行这些任务.然而,往往这些任务最终又会直接或者 间接的需要访问和控制UI控件.例如访问网络获取数据,然后需要将这些数据处理显示出来.就出现了上面所说的情况.原本这是在正常不过的现象了,但是 android规定除了UI线程外,其他线程都不可以对那些UI控件访问和操控.为了解决

【Android开发】完美解决Android完全退出程序

背景:假说有两个Activity, Activity1和Activity2, 1跳转到2,如果要在2退出程序,一般网上比较常见的说法是用 System.exit(0) 或是 android.os.Process.killProcess(android.os.Process.myPid()) 但实际应用中,并不是能够真正退出,问题出在?1跳转到2时,如果Activity1你finish掉了,两么是可以退出程序的,但有时1跳转到2时,我们不能将Activity1 finish掉,那么在Activit

解决 android.view.ViewGroup$LayoutParams cannot be cast to android.widget.AbsListView$LayoutParams

错误日志1: 06-13 10:55:50.410: E/KVLog(1129): Error info:java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams06-13 10:55:50.423: E/KVLog(1129): Cause Result:java.lang.ClassCastException: android.widget.LinearLayout$LayoutParams06-13 10:

解决android studio项目中Failded to sync Gradle project &#39;XXXX&#39; Cause:failed to find target with hash string &#39;android-16&#39;问题

之前在github上通过import module导入一个项目,结果报错,提示找不到sdk相应的版本xx,而我的compileSdkVersion明明写的是23不是xx,查了半天也没解决.最后只好下载了那个版本的sdk. 今天导入SlidingMenu的module的时候,又遇到了这个问题.  问题: Cause:failed to find target with hash string 'android-16' in: E:\sony\Android\sdk failed to find B