15_Android中任务栈

简介: 1.一个应用程序一般都是由多个activity组成的。2.任务栈(task stack)(别名backstack后退栈)记录存放用户开启的activity的。3.一个应用程序一被开启系统就给他分配一个任务栈,当所有的activity都退出的时候,任务栈就清空了。4.任务栈的id是一个integer的数据类型 自增长的。5.在android操作系统里面会存在多个任务栈,一个应用程序


1.一个应用程序一般都是由多个activity组成的。

2.任务栈(task stack)(别名backstack后退栈)记录存放用户开启的activity的。

3.一个应用程序一被开启系统就给他分配一个任务栈,当所有的activity都退出的时候,任务栈就清空了。

4.任务栈的id是一个integer的数据类型 自增长的。

5.android操作系统里面会存在多个任务栈,一个应用程序一个任务栈。

6.桌面应用和一般的应用程序是一样的,任务栈的行为也是一样的。

7.默认情况下,关闭掉一个应用程序,清空了这个应用程序的任务栈。应用程序的进程还会保留。

 

为什么要引入任务栈的概念:

window下,可以通过点击任务栏  切换任务

android下,长按小房子,切换任务。

 

 

为了记录用户开启了哪些activity,记录这些activity开启的先后顺序,google引入任务栈。(task stack)概念,帮助维护好的用户体验。

 

Activity的启动模式

Standard 默认标准的启动模式,每次startActivity都是创建一个新的activity的实例。适用于绝大多数情况。

singleTop 单一顶部,如果要开启的activity在任务栈的顶部已经存在,就不会创建新的实例。而是调用onNewIntent()方法。应用场景:浏览器书签。避免栈顶的activity被重复的创建,解决用户体验的问题。

singletask 单一任务栈 activity只会在任务栈里面存在一个实例。如果要激活的activity,在任务栈里面已经存在,就不会创建新的activity,而是复用这个已经存在的activity,调用 onNewIntent() 方法,并且清空当前activity任务栈上面所有的activity

    应用场景:浏览器activity 整个任务栈只有一个实例,节约内存和cpu的目的

    注意: activity还是运行在当前应用程序的任务栈里面的。不会创建新的任务栈。

singleInstance 单状态   单例模式

单一实例,整个手机操作系统里面只有一个实例存在,不同的应用去打开这个activity共享,公用的同一个activity

它会运行在自己的单独,独立的任务栈里面,并且任务栈里面只有他一个实例存在。

应用场景:呼叫来点界面InCallScreen

 

案例,编写如下案例

1 android清单文件的内容如下:

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.itheima.taskstack"

    android:versionCode="1"

    android:versionName="1.0" >

 

    <uses-sdk

        android:minSdkVersion="8"

        android:targetSdkVersion="19" />

 

    <application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

        <activity

            android:name="com.itheima.taskstack.MainActivity"

            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="com.itheima.taskstack.SecondActivity"

            android:launchMode="singleInstance"

            >

            <intent-filter>

                <action android:name="com.itheima.task.single"/>

                <category android:name="android.intent.category.DEFAULT" />

 

            </intent-filter>

        </activity>

    </application>

 

</manifest>

2 布局文件activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    tools:context=".MainActivity" >

 

    <TextView

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="我是界面01"

        android:textSize="30sp"/>

   

    <Button

        android:onClick="open01"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="开启界面01"/>

   

    <Button

        android:onClick="open02"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="开启界面02"/>

</LinearLayout>

3 布局文件activity_second.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    tools:context=".MainActivity" >

   

     <TextView

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:text="我是界面02"

        android:textSize="30sp" />

 

    <Button

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:onClick="open01"

        android:text="开启界面01" />

 

    <Button

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:onClick="open02"

        android:text="开启界面02" />

 

</LinearLayout>

4 MainActivity

package com.itheima.taskstack;

import android.app.Activity;

import android.content.Intent;

import android.os.Bundle;

import android.view.View;

 

public class MainActivity extends Activity {

 

         @Override

         protected void onCreate(Bundle savedInstanceState) {

                   super.onCreate(savedInstanceState);

                   setContentView(R.layout.activity_main);

                   System.out.println("01activity被创建了。任务栈id"+getTaskId());

         }

 

         public void open01(View view){

                   Intent intent = new Intent(this,MainActivity.class);

                   startActivity(intent);

         }

         public void open02(View view){

                   Intent intent = new Intent(this,SecondActivity.class);

                   startActivity(intent);

         }

}

5 SecondActivity

package com.itheima.taskstack;

 

import android.app.Activity;

import android.content.Intent;

import android.os.Bundle;

import android.view.View;

 

public class SecondActivity extends Activity {

 

         @Override

         protected void onCreate(Bundle savedInstanceState) {

                   super.onCreate(savedInstanceState);

                   setContentView(R.layout.activity_second);

                   System.out.println("02activity被创建了。任务栈id:" + getTaskId());

         }

        

         public void open01(View view) {

                   Intent intent = new Intent(this,MainActivity.class);

                   startActivity(intent);

         }

        

         public void open02(View view) {

                   Intent intent = new Intent(this,SecondActivity.class);

                   startActivity(intent);

         }

         @Override

         protected void onNewIntent(Intent intent) {

                   System.out.println("o2activityonnew intent.任务栈id:" + getTaskId());

                   super.onNewIntent(intent);

         }

}

 

目录
相关文章
|
7月前
|
Java 数据库 Android开发
【专栏】Kotlin在Android开发中的多线程优化,包括线程池、协程的使用,任务分解、避免阻塞操作以及资源管理
【4月更文挑战第27天】本文探讨了Kotlin在Android开发中的多线程优化,包括线程池、协程的使用,任务分解、避免阻塞操作以及资源管理。通过案例分析展示了网络请求、图像处理和数据库操作的优化实践。同时,文章指出并发编程的挑战,如性能评估、调试及兼容性问题,并强调了多线程优化对提升应用性能的重要性。开发者应持续学习和探索新的优化策略,以适应移动应用市场的竞争需求。
188 5
|
24天前
|
算法 Linux 调度
深入探索安卓系统的多任务处理机制
【10月更文挑战第21天】 本文旨在为读者提供一个关于Android系统多任务处理机制的全面解析。我们将从Android操作系统的核心架构出发,探讨其如何管理多个应用程序的同时运行,包括进程调度、内存管理和电量优化等方面。通过深入分析,本文揭示了Android在处理多任务时所面临的挑战以及它如何通过创新的解决方案来提高用户体验和设备性能。
38 1
|
Shell Android开发 容器
你真了解Android任务栈 Task 与启动模式吗?
你真了解Android任务栈 Task 与启动模式吗?
139 0
|
7月前
|
XML Java Android开发
Android Studio App开发之捕获屏幕的变更事件实战(包括竖屏与横屏切换,回到桌面与切换到任务列表)
Android Studio App开发之捕获屏幕的变更事件实战(包括竖屏与横屏切换,回到桌面与切换到任务列表)
209 0
Android10.0 最近任务Recents功能分析(上)
Android10.0 最近任务Recents功能分析(上)
1587 2
Android10.0 最近任务Recents功能分析(上)
|
23天前
|
Linux Android开发 iOS开发
深入探索Android与iOS的多任务处理机制
在移动操作系统领域,Android和iOS各有千秋,尤其在多任务处理上展现出不同的设计理念和技术实现。本文将深入剖析两大平台在后台管理、资源分配及用户体验方面的策略差异,揭示它们如何平衡性能与电池寿命,为用户带来流畅而高效的操作体验。通过对比分析,我们不仅能够更好地理解各自系统的工作机制,还能为开发者优化应用提供参考。
|
2月前
|
Android开发
Android gradle task任务检查各个module之间资源文件冲突.md
Android gradle task任务检查各个module之间资源文件冲突.md
Android gradle task任务检查各个module之间资源文件冲突.md
|
2月前
|
Android开发 Kotlin
Android面试题之Kotlin中如何实现串行和并行任务?
本文介绍了 Kotlin 中 `async` 和 `await` 在并发编程中的应用,包括并行与串行任务的处理方法。并通过示例代码展示了如何启动并收集异步任务的结果。
33 0
|
6月前
|
Android开发
40. 【Android教程】AsyncTask:异步任务
40. 【Android教程】AsyncTask:异步任务
143 2
|
安全 Java Android开发
Android 中AsyncTask后台线程,异步任务的理解
Android 中AsyncTask后台线程,异步任务的理解
163 0