Android 应用程序多Activity跳转之后退出整个程序

在应用中肯定遇到有这样的问题,在应用中在于多的Activity中跳转,这些Activity都存在Activity栈中了。所以按返回键的时候都是一个一个的将原来的Activity弹回。如果我们想捕获到back事件之后直接退出整个程序,就要思考了。特别是2.2之后的安全机制考虑之后。

粘贴点代码,以备之后使用。

Java代码

  1. package com.jftt;   
  2.   
  3. import Android.app.Activity;   
  4. import android.app.ActivityManager;   
  5. import android.app.AlertDialog;   
  6. import android.content.Context;   
  7. import android.content.DialogInterface;   
  8. import android.content.Intent;   
  9. import android.os.Bundle;   
  10. import android.util.Log;   
  11. import android.view.KeyEvent;   
  12. import android.view.View;   
  13. import android.view.View.OnClickListener;   
  14. import android.widget.Button;   
  15.   
  16. public class TestLogout extends Activity {
      
  17.     public static final String TAG = TestLogout.class.getSimpleName();
      
  18.     private Button btn1;   
  19.     private Button btn2;   
  20.     private Button btn3;   
  21.     private Button btn4;   
  22.     private Button btn5;   
  23.     private Button go;   
  24.   
  25.     @Override  
  26.     protected void onCreate(Bundle savedInstanceState) {   
  27.         super.onCreate(savedInstanceState);   
  28.         setContentView(R.layout.logout);   
  29.         this.onStart();   
  30.   
  31.         btn1 = (Button) findViewById(R.id.btn1);   
  32.         btn1.setOnClickListener(new OnClickListener() {   
  33.             @Override  
  34.             public void onClick(View v) {   
  35.                 android.os.Process.killProcess(android.os.Process.myPid()); // 获取PID
      
  36.             }   
  37.         });   
  38.   
  39.         btn2 = (Button) findViewById(R.id.btn2);   
  40.         btn2.setOnClickListener(new OnClickListener() {   
  41.             @Override  
  42.             public void onClick(View v) {   
  43.                 System.exit(0); // 常规java、c#的标准退出法,返回值为0代表正常退出
      
  44.             }   
  45.         });   
  46.   
  47.         btn3 = (Button) findViewById(R.id.btn3);   
  48.         btn3.setOnClickListener(new OnClickListener() {   
  49.             @Override  
  50.             public void onClick(View v) {   
  51.                 Log.i(TAG, "close " + getPackageName());   
  52.                 ActivityManager am = (ActivityManager) TestLogout.this .getSystemService(Context.ACTIVITY_SERVICE);   
  53.                 am.restartPackage(getPackageName());   
  54.                 // am.killBackgroundProcesses(getPackageName());
      
  55.             }   
  56.         });   
  57.            
  58.         btn4 = (Button) findViewById(R.id.btn4);   
  59.         btn4.setOnClickListener(new OnClickListener() {   
  60.             @Override  
  61.             public void onClick(View v) {   
  62.                 Intent intent = new Intent();   
  63.                 // intent.setClass((B或者C或者D).this, A.class);
      
  64.                 intent.setClass(TestLogout.this, TestLogout.class);
      
  65.                 intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);   
  66.                 intent.putExtra("flag", 1);   
  67.                 startActivity(intent);   
  68.             }   
  69.         });   
  70.            
  71.         //此方法并未杀掉应用程序 而是把launcher调起
      
  72.         btn5 = (Button) findViewById(R.id.btn5);   
  73.         btn5.setOnClickListener(new OnClickListener() {   
  74.             @Override  
  75.             public void onClick(View v) {   
  76.                 Intent startMain = new Intent(Intent.ACTION_MAIN);   
  77.                 startMain.addCategory(Intent.CATEGORY_HOME);   
  78.                 startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   
  79.                 startActivity(startMain);   
  80.             }   
  81.         });   
  82.   
  83.         go = (Button) findViewById(R.id.go);   
  84.         go.setOnClickListener(new OnClickListener() {   
  85.             @Override  
  86.             public void onClick(View v) {   
  87.                 Intent intent = new Intent(TestLogout.this, TestLogout.class);
      
  88.                 // intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
      
  89.                 startActivity(intent);   
  90.             }   
  91.         });   
  92.   
  93.     }   
  94.        
  95.     protected void onStart() {   
  96.         super.onStart();   
  97.         Intent intent = getIntent();   
  98.         int x = intent.getIntExtra("flag", -1);
      
  99.         if (x == 0) {   
  100.             finish();   
  101.         }   
  102.     }   
  103.        
  104.     @Override  
  105.     public boolean onKeyDown(int keyCode, KeyEvent event) {
      
  106.         if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
      
  107.             AlertDialog.Builder alertbBuilder = new AlertDialog.Builder(this);
      
  108.             alertbBuilder.setIcon(R.drawable.icon).setTitle("友情提示...").setMessage("你确定要离开吗?");
      
  109.             alertbBuilder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
      
  110.                         @Override  
  111.                         public void onClick(DialogInterface dialog, int which) {
      
  112.                             // 结束这个Activity
      
  113.                             int nPid = android.os.Process.myPid();   
  114.                             android.os.Process.killProcess(nPid);   
  115.                         }   
  116.                     });   
  117.             alertbBuilder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
      
  118.                         @Override  
  119.                         public void onClick(DialogInterface dialog, int which) {
      
  120.                             dialog.cancel();   
  121.                         }   
  122.                     }).create();   
  123.             alertbBuilder.show();   
  124.         }   
  125.         return true;   
  126.     }   

Java代码

  1. package com.jftt;   
  2.   
  3. import java.util.Stack;   
  4.   
  5. import Android.app.Activity;   
  6.   
  7. public class ActiivtyStack {   
  8.     private static Stack<Activity> mActivityStack;   
  9.     private static ActiivtyStack instance;   
  10.   
  11.     private ActiivtyStack() {   
  12.     }   
  13.     public static ActiivtyStack getScreenManager() {   
  14.         if (instance == null) {   
  15.             instance = new ActiivtyStack();   
  16.         }   
  17.         return instance;   
  18.     }   
  19.   
  20.     // 退出栈顶Activity
      
  21.     public void popActivity(Activity activity) {   
  22.         if (activity != null) {   
  23.             activity.finish();   
  24.             mActivityStack.remove(activity);   
  25.             // mActivityStack.pop();
      
  26.             activity = null;   
  27.         }   
  28.     }   
  29.   
  30.     // 获得当前栈顶Activity
      
  31.     public Activity currentActivity() {   
  32.         Activity activity = mActivityStack.lastElement();   
  33.         // Activity activity = mActivityStack.pop();
      
  34.         return activity;   
  35.     }   
  36.   
  37.     // 将当前Activity推入栈中
      
  38.     public void pushActivity(Activity activity) {   
  39.         if (mActivityStack == null) {   
  40.             mActivityStack = new Stack<Activity>();   
  41.         }   
  42.         mActivityStack.add(activity);   
  43.         // mActivityStack.push(activity);
      
  44.     }   
  45.   
  46.     // 退出栈中所有Activity
      
  47.     public void popAllActivityExceptOne(Class<Activity> cls) {
      
  48.         while (true) {   
  49.             Activity activity = currentActivity();   
  50.             if (activity == null) {   
  51.                 break;   
  52.             }   
  53.             if (activity.getClass().equals(cls)) {   
  54.                 break;   
  55.             }   
  56.             popActivity(activity);   
  57.         }   
  58.     }   
  59.   
  60. }  

logout.xml

Xml代码

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7.     <Button  
  8.         android:id="@+id/btn1"  
  9.         android:layout_width="fill_parent"    
  10.         android:layout_height="wrap_content"  
  11.         android:text="logout button1"  
  12.         />  
  13.     <Button  
  14.         android:id="@+id/btn2"  
  15.         android:layout_width="fill_parent"    
  16.         android:layout_height="wrap_content"  
  17.         android:text="logout button2"  
  18.         />  
  19.     <Button  
  20.         android:id="@+id/btn3"  
  21.         android:layout_width="fill_parent"    
  22.         android:layout_height="wrap_content"  
  23.         android:text="logout button3"  
  24.         />  
  25.     <Button  
  26.         android:id="@+id/btn4"  
  27.         android:layout_width="fill_parent"    
  28.         android:layout_height="wrap_content"  
  29.         android:text="go to first"  
  30.         />  
  31.     <Button  
  32.         android:id="@+id/btn5"  
  33.         android:layout_width="fill_parent"    
  34.         android:layout_height="wrap_content"  
  35.         android:text="go to launcher"  
  36.         />  
  37.     <Button  
  38.         android:id="@+id/go"  
  39.         android:layout_width="fill_parent"    
  40.         android:layout_height="wrap_content"  
  41.         android:text="go another activity"  
  42.         />  
  43.     <!--   
  44.     <EditText  
  45.         android:id="@+id/et01"  
  46.         android:layout_width="fill_parent"  
  47.         android:layout_height="fill_parent"  
  48.         />  
  49.     <ImageView  
  50.         android:id="@+id/iv01"  
  51.         android:layout_width="wrap_content"  
  52.         android:layout_height="wrap_content"  
  53.         />  
  54.     -->  
  55. </LinearLayout>  

manifest中的权限:

Xml代码

  1. <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />  
  2. <uses-permission android:name="android.permission.RESTART_PACKAGE" /> 
时间: 2024-10-22 07:23:51

Android 应用程序多Activity跳转之后退出整个程序的相关文章

Android组件系列----当前Activity跳转到另一个Activity的详细过程

[正文]  一.如何在一个应用程序当中定义多个Activity: 步骤如下: (1)定义一个类,继承Activity (2)在该类当中,复写Activity当中的onCreate()方法 (3)在AndroidManifest.xml文件中注册该Activity 详细解释如下: (1)定义一个类,继承Activity:在src文件夹里面的包中新建一个class文件,可命名为:SecondActivity.java (2)在该类当中,复写Activity当中的onCreate()方法:在菜单栏选择

Android 实现两个Activity跳转实例_Android

1.关于从Activity A跳转到Activity B 其中Activity A中有一个VideoView,Activity B中有一个MediaPlayer. 两个不同的视频的跳转,前面我是在onStop()方法中销毁VideoView(因为MediaPlayer是全局共用的,而VideoView内包含MediaPlayer),但是每次进入Activity B视频播放了一点 就会弹出了,导致视频B播放失败 public class MovieSynopsis extends BaseActi

Android tab 实现子Activity跳转

http://download.csdn.net/download/fylst/3946255 项目中需要实现iphone中tabBar效果, 参考了网上大虾们的例子,实现了tab 中的子Activity跳转,并且带有动画效果:这里没有抽取动画作为参数,也可以定制自己的跳转动画:tab bar 的外观可以自己定制,将自带的tab隐藏,控制自定义的view调用tab的动作就可以,代码很简单,这里没有给出.

android游戏载入的activity跳转到游戏主菜单的activity具体实现_Android

复制代码 代码如下: public class LoadActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE);// 去掉标题栏 getWindow().setFlags(WindowManager.Layou

Android 实现两个Activity跳转实例

1.关于从Activity A跳转到Activity B 其中Activity A中有一个VideoView,Activity B中有一个MediaPlayer. 两个不同的视频的跳转,前面我是在onStop()方法中销毁VideoView(因为MediaPlayer是全局共用的,而VideoView内包含MediaPlayer),但是每次进入Activity B视频播放了一点 就会弹出了,导致视频B播放失败 public class MovieSynopsis extends BaseActi

android游戏载入的activity跳转到游戏主菜单的activity具体实现

复制代码 代码如下: public class LoadActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE);// 去掉标题栏 getWindow().setFlags(WindowManager.Layou

Android通过滑动实现Activity跳转(手势识别器应用)

通过手势识别器实现界面的转跳,具体内容如下 1.创建 GestureDetector对象 2.创建新类继承SimpleOnGestureListener类(创建 GestureDetecto需要的参数) 3.重写SimpleOnGestureListener中的OnFling()方法.(滑动手势监听) 4.重写界面的OntouchEvent方法 5.通过 GestureDetector对象的onTouchEvent()添加事件 代码如下: public abstract class BaseAc

android-Android. 如何实现viewpager里面的一个条目向Activity跳转

问题描述 Android. 如何实现viewpager里面的一个条目向Activity跳转 Android. 如何实现viewpager里面的一个条目作为点击时间,向Activity跳转,不知道如何做,求大神们帮忙 解决方案 Android实现Activity的跳转android 实现各activity之间的跳转android用Intent实现Activity跳转 解决方案二: 比如fragment里面有个button,点击button事件监听,Intent intent = new Inten

android的activity跳转到另一个activity_Android

开发环境:android4.1.1 实验功能:在第一个Hello World!为标签的activity中显示good,该界面中有一个名为Next的按钮.点击Next按钮进入到第二个activity中去,第二个界面中只有1个Close按钮.当然,据网上有人将要比较安全的实现关闭程序的功能也不是挺简单的,因为android有专门的退出键返回键等.所以该Close按钮暂时没去实现它.我的第1个activity为HelloworldActivity,第2个activity为NextActivity. 实