本示例演示如何通过设置Intent对象的标记,来改变当前任务堆栈中既存的Activity的顺序。
1. Intent对象的Activity启动标记说明:
FLAG_ACTIVITY_broUGHT_TO_FRONT
应用程序代码中通常不设置这个标记,而是由系统给单任务启动模式的Activity的设置。
FLAG_ACTIVITY_CLEAR_TASK
如果给Intent对象添加了这个标记,那么在Activity被启动之前,会导致跟这个Activity关联的任何既存的任务都被清除。也就是说新的Activity会成为一个空任务的根,而其他任何Activity都会被销毁。它紧跟FLAG_ACTIVITY_NEW_TASK联合使用。
FLAG_ACTIVITY_CLEAR_top
如果给Intent对象设置这个标记,并且要启动的Activity在当前任务中已经运行了,那么不是创建一个这个Activity的新的实例,而是把堆栈中这个Activity之上的所有其他Activity都关掉,然后把新的Intent对象发送给这个既存的Activity(这时它在堆栈的顶部)。
FLAG_ACTIVITY_CLEAR_WHEN_TASK_REST
如果给Intent对象设置了这个标记,那么在这个任务被复位时,在任务的Activity堆栈中这个标记点之后的Activity都应该被清除。
FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
如果给Intent对象设置了这个标记,那么新的Activity不会被保留在最近启动的Activity的列表中。
FLAG_ACTIVITY_FORWARD_RESulT
如果给Intent对象设置了这个标记,并且这个Intent对象被用于从一个既存的Activity中启动一个新的Activity,然后将这个既存Activity的回复目标转移到新的Activity。使用这种方式获取的新的Activity能够调用setResult(int)方法,把结果返回给原始的Activity。
FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
这个标记通常不由应用程序代码来设置,如果是从历史中启动这个Activity,系统就会设置这个标记。
FLAG_ACTIVITY_MulTIPLE_TASK
除非实现自己的顶层应用程序启动器,否则不使用这个标记。
FLAG_ACTIVITY_NEW_TASK
如果给Intent对象设置了这个标记,在历史堆栈之上,这个Activity将成为一个新任务的起点。
FLAG_ACTIVITY_NO_ANIMATION
如果给Intent对象设置了这个标记,那么将会阻止系统在Activity间切换的动画变换。
FALG_ACTIVITY_NO_HISTORY
如果给Intent对象设置了这个标记,那么新的Activity将不会被保留在历史堆栈中。
FLAG_ACTIVITY_NO_USER_ACTION
如果给Intent对象设置了这个标记,在新启动到前台的Activity被挂起之前,它会阻止普通的onUserLeaveHint()方法的回调。如果电话拨号或闹钟程序就要使用这个标记来启动Activity。
FLAG_ACTIVITY_PREVIoUS_IS_top
如果给Intent对象设置了这个标记,并且这个Intent对象被用于从一个既存的Activity中启动一个新的Activity,这个Activity不能用于接受发送给顶层Activity的新的Intent对象,通常认为使用这个标记启动的Activity会被自己立即终止。
FLAG_ACTIVITY_REORDER_TO_FRONT
如果给Intent对象设置了这个标记,那么将会导致任务历史堆栈中既存的Activity被带到前台。
FLAG_ACTIVITY_reset_TASK_IF_NEEDED
如果给Intent对象设置了这个标记,并且这个Activity在一个新任务中被启动,也可以在既存的任务堆栈中被带到顶层,那么它就会被作为任务的前门来启动。
FLAG_ACTIVITY_SINGLE_top
如果给Intent对象设置了这个标记,如果要启动的Activity已经在历史堆栈的顶层运行,那么这个Activity就不会被启动。
FLAG_ACTIVITY_TASK_ON_HOME
如果给Intent对象设置了这个标记,那么它会导致新启动的任务被放到当前的主Activity任务之上。
2. 示例代码
2.1. 定义清单文件(AndroIDManifest.xml)
<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"package="my.androID.test"androID:versionCode="1"androID:versionname="1.0"><application androID:icon="@drawable/icon" androID:label="@string/app_name"><activity androID:name=".ReorderOnLaunch"androID:label="@string/app_name"><intent-filter><action androID:name="androID.intent.action.MAIN" /><category androID:name="androID.intent.category.LAUNCHER" /></intent-filter></activity><activity androID:name=".ReorderTwo" /><activity androID:name=".ReorderThree" /><activity androID:name=".ReorderFour" /></application><uses-sdk androID:minSdkVersion="9" /></manifest>
2.2. 定义字符串资源(strings.xml)
<?xml version="1.0" enCoding="utf-8"?><resources><string name="hello">Hello World,ReorderOnLaunch!</string><string name="app_name">ReorderOnLaunch</string><string name="reorder_on_launch">This is the first of a sequence of four ActivitIEs. A button on the fourth will use the Intent.FLAG_ACTIVITY_REORDER_TO_FRONT flag to bring the second of the activitIEs to the front of the history stack. After that,proceeding back through the history should begin with the newly-frontmost second reorder activity,then the fourth,the third,and finally the first.</string><string name="reorder_launch_two">Go to the second</string><string name="reorder_two_text">This is the second in a sequence of four ActivitIEs.</string><string name="reorder_launch_three">Go to the third</string><string name="reorder_three_text">This is the third of a sequence of four ActivitIEs.</string><string name="reorder_launch_four">Go to the fourth</string><string name="reorder_four_text">This is the last in a sequence of four ActivitIEs.</string><string name="reorder_second_to_front">Bring the second in front</string></resources>
2.3. 定义布局文件
reorder_on_launch.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:padding="4dip"androID:gravity="center_horizontal"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><TextVIEwandroID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:layout_weight="0"androID:paddingBottom="4dip"androID:text="@string/reorder_on_launch"/><button androID:ID="@+ID/reorder_launch_two"androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"androID:text="@string/reorder_launch_two" /></linearLayout>
reorder_two.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:padding="4dip"androID:gravity="center_horizontal"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><TextVIEwandroID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:layout_weight="0"androID:paddingBottom="4dip"androID:text="@string/reorder_two_text"/><buttonandroID:ID="@+ID/reorder_launch_three"androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"androID:text="@string/reorder_launch_three" /></linearLayout>
reorder_three.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:padding="4dip"androID:gravity="center_horizontal"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><TextVIEwandroID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:layout_weight="0"androID:paddingBottom="4dip"androID:text="@string/reorder_three_text"/><button androID:ID="@+ID/reorder_launch_four"androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"androID:text="@string/reorder_launch_four" /></linearLayout>
reorder_four.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:padding="4dip"androID:gravity="center_horizontal"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><TextVIEwandroID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:layout_weight="0"androID:paddingBottom="4dip"androID:text="@string/reorder_four_text"/><button androID:ID="@+ID/reorder_second_to_front"androID:layout_wIDth="wrap_content"androID:layout_height="wrap_content"androID:text="@string/reorder_second_to_front" /></linearLayout>
2.4. 创建Activity
ReorderOnLaunch.java
package my.androID.test;import androID.app.Activity;import androID.content.Intent;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.button;public class ReorderOnLaunch extends Activity {@OverrIDepublic voID onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentVIEw(R.layout.reorder_on_launch);button twobutton = (button)findVIEwByID(R.ID.reorder_launch_two);twobutton.setonClickListener(mClickListener);} private final OnClickListener mClickListener = new OnClickListener(){public voID onClick(VIEw v){startActivity(new Intent(ReorderOnLaunch.this,ReorderTwo.class));}};}
ReorderTwo.java
package my.androID.test;import androID.app.Activity;import androID.content.Intent;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.button;public class ReorderTwo extends Activity {@OverrIDeprotected voID onCreate(Bundle saveState){super.onCreate(saveState);setContentVIEw(R.layout.reorder_two); button twobutton = (button)findVIEwByID(R.ID.reorder_launch_three);twobutton.setonClickListener(mClickListener);}private final OnClickListener mClickListener = new OnClickListener(){publicvoID onClick(VIEw v){startActivity(new Intent(ReorderTwo.this,ReorderThree.class));}};}
ReorderThree.java
package my.androID.test;import androID.app.Activity;import androID.content.Intent;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.button;public class ReorderThree extends Activity {private final OnClickListener mClickListener = new OnClickListener(){public voID onClick(VIEw v){startActivity(new Intent(ReorderThree.this,ReorderFour.class));}};@OverrIDeprotected voID onCreate(Bundle saveState){super.onCreate(saveState);setContentVIEw(R.layout.reorder_three);button twobutton = (button)findVIEwByID(R.ID.reorder_launch_four);twobutton.setonClickListener(mClickListener);}}
ReorderFour.java
package my.androID.test;import androID.app.Activity;import androID.content.Intent;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.button;publicclass ReorderFour extends Activity {@OverrIDeprotected voID onCreate(Bundle saveState){super.onCreate(saveState); setContentVIEw(R.layout.reorder_four); button twobutton = (button)findVIEwByID(R.ID.reorder_second_to_front);twobutton.setonClickListener(mClickListener);}private final OnClickListener mClickListener = new OnClickListener(){public voID onClick(VIEw v){Intent intent = new Intent(ReorderFour.this,ReorderTwo.class);intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);startActivity(intent);}};}
3.activity堆栈管理类
package net.oschina.app;import java.util.Stack;import androID.app.Activity;import androID.content.Context;/*** activity堆栈式管理*/public class AppManager {private static Stack<Activity> activityStack;private static AppManager instance;private AppManager() {}/*** 单一实例*/public static AppManager getAppManager() {if (instance == null) {instance = new AppManager();}return instance;}/*** 添加Activity到堆栈*/public voID addActivity(Activity activity) {if (activityStack == null) {activityStack = new Stack<Activity>();}activityStack.add(activity);}/*** 获取当前Activity(堆栈中最后一个压入的)*/public Activity currentActivity() {Activity activity = activityStack.lastElement();return activity;}/*** 结束当前Activity(堆栈中最后一个压入的)*/public voID finishActivity() {Activity activity = activityStack.lastElement();finishActivity(activity);}/*** 结束指定的Activity*/public voID finishActivity(Activity activity) {if (activity != null && !activity.isFinishing()) {activityStack.remove(activity);activity.finish();activity = null;}}/*** 结束指定类名的Activity*/public voID finishActivity(Class<?> cls) {for (Activity activity : activityStack) {if (activity.getClass().equals(cls)) {finishActivity(activity);break;}}}/*** 结束所有Activity*/public voID finishAllActivity() {for (int i = 0,size = activityStack.size(); i < size; i++) {if (null != activityStack.get(i)) {finishActivity(activityStack.get(i));break;}}activityStack.clear();}/*** 获取指定的Activity*/public static Activity getActivity(Class<?> cls) {if (activityStack != null)for (Activity activity : activityStack) {if (activity.getClass().equals(cls)) {return activity;}}return null;}/*** 退出应用程序*/public voID AppExit(Context context) {try {finishAllActivity();// 杀死该应用进程androID.os.Process.killProcess(androID.os.Process.myPID());System.exit(0);} catch (Exception e) {}}}
以上所述是小编给大家介绍的AndroID activity堆栈及管理实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!
总结以上是内存溢出为你收集整理的Android activity堆栈及管理实例详解全部内容,希望文章能够帮你解决Android activity堆栈及管理实例详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)