引用:http://blog.csdn.net/think_soft/article/details/7477072java
本示例演示如何經過設置Intent對象的標記,來改變當前任務堆棧中既存的Activity的順序。android
1. Intent對象的Activity啓動標記說明:app
FLAG_ACTIVITY_BROUGHT_TO_FRONT:ide
應用程序代碼中一般不設置這個標記,而是由系統給單任務啓動模式的Activity的設置。佈局
FLAG_ACTIVITY_CLEAR_TASK:動畫
若是給Intent對象添加了這個標記,那麼在Activity被啓動以前,會致使跟這個Activity關聯的任何既存的任務都被清除。也就是說新的Activity會成爲一個空任務的根,而其餘任何Activity都會被銷燬。它緊跟FLAG_ACTIVITY_NEW_TASK聯合使用。this
FLAG_ACTIVITY_CLEAR_TOP:spa
若是給Intent對象設置這個標記,而且要啓動的Activity在當前任務中已經運行了,那麼不是建立一個這個Activity的新的實例,而是把堆棧中這個Activity之上的全部其餘Activity都關掉,而後把新的Intent對象發送給這個既存的Activity(這時它在堆棧的頂部)。.net
FLAG_ACTIVITY_CLEAR_WHEN_TASK_REST:xml
若是給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">
<TextView
android: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">
</Button>
</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">
<TextView
android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_weight="0"
android:paddingBottom="4dip"
android:text="@string/reorder_two_text"/>
<Button android:id="@+id/reorder_launch_three"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/reorder_launch_three">
</Button>
</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">
<TextView
android: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">
</Button>
</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">
<TextView
android: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">
</Button>
</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;
publicclass ReorderOnLaunch extends Activity {
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.reorder_on_launch);
Button twoButton = (Button)findViewById(R.id.reorder_launch_two);
twoButton.setOnClickListener(mClickListener);
}
privatefinal OnClickListener mClickListener = new OnClickListener(){
publicvoid 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;
publicclass ReorderTwo extends Activity {
@Override
protectedvoid onCreate(Bundle saveState){
super.onCreate(saveState);
setContentView(R.layout.reorder_two);
Button twoButton = (Button)findViewById(R.id.reorder_launch_three);
twoButton.setOnClickListener(mClickListener);
}
privatefinal 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;
publicclass ReorderThree extends Activity {
privatefinal OnClickListener mClickListener = new OnClickListener(){
publicvoid onClick(View v){
startActivity(new Intent(ReorderThree.this, ReorderFour.class));
}
};
@Override
protectedvoid 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 {
@Override
protectedvoid onCreate(Bundle saveState){
super.onCreate(saveState);
setContentView(R.layout.reorder_four);
Button twoButton = (Button)findViewById(R.id.reorder_second_to_front);
twoButton.setOnClickListener(mClickListener);
}
privatefinal OnClickListener mClickListener = new OnClickListener(){
publicvoid onClick(View v){
Intent intent = new Intent(ReorderFour.this, ReorderTwo.class);
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
}
};
}