Splash Screen的Activity SingleTask行为

时间:2014-05-14 07:28:19

标签: android android-activity android-manifest launchmode

在我的App中我有:

-SplashScreen(SSc)准备应用程序(启动服务等) -MainActivity(MA)是处理大多数操作的应用程序中最相关的部分 - 以及其他一些不相关的活动

对于我的应用程序,我希望获得类似launchMode singleTask的行为,以便我的应用程序始终作为新任务启动,即使通过SMS / EMail应用程序中的链接单击打开也是如此。最好的方法是只有一个我的活动实例,因为它们都是可串行导航的。

然而,当我将SSc作为singleTask启动时,它是堆栈的根目录并导航到MainActivity,按下主页,再次单击Launcher图标,应用程序完全重新启动。所以再次显示SSc,依此类推。在这种情况下,我希望将MainActivty带到前面。

我的愿望是: launcherclick - > SSc - > MA - > HOME - > launcherclick - >把MA带到前面 - >首页 - >从最近重新开始 - >把MA带到前面

点击链接 - > SSc / MA(是否是第一次启动)具有相同的实例

在我的应用程序中,拥有多个实例是没有意义的,因为后台服务一次只处理一个MainActivity,因为它经常轮询数据只是为了看到" Thing"。

您是否有任何建议可以实现这一目标?

我的第一个想法是使用launchMode单一任务的LauncherActivity,没有布局将意图路由到其他活动(很可能是singleTop!?,因为它只在一个任务中),如:

public class LauncherActivity extends Activity {
 private boolean firstStart = true;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    @Override
    protected void onResume() {
        super.onResume();
        if(firstStart){
            startActivity(new Intent(this, SplashScreen.class));
            firstStart = false;
        } else {
            Intent i = new Intent(this, MainActivity.class);
            i.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
            startActivity(i);
        }
    }
}

清单xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="x.startintenttest">

    <application
        android:allowBackup="true"
        android:allowTaskReparenting="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name">
        <activity
            android:name="x.startintenttest.MainActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop"></activity>
        <activity
            android:name="x.startintenttest.MainActivity2"
            android:label="@string/title_activity_main_activity2"></activity>
        <activity
            android:name="x.startintenttest.SplashScreen"
            android:label="@string/title_activity_splash_screen"
            android:launchMode="singleTask">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

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

                <data
                    android:host="*.xyz.de"
                    android:pathPattern="/...-........."
                    android:scheme="https" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>

    </application>

</manifest>

2 个答案:

答案 0 :(得分:5)

它很简单,我也做了同样的事情。我正在使用singleTask进行启动和主要活动。所以我遇到了同样的问题(每次唤醒都会显示Splash)。但是我通过从splash中删除singleTask来解决这个问题并将其保留为MA(我曾经在MA启动时完成splashActivity)。尝试这个技巧。

答案 1 :(得分:0)

提供的解决方案可以解决Sripathi的问题,但最终您会得到链接打开应用程序,该应用程序在其预览中具有初始屏幕布局。我对此的解决方案是使用一个没有布局的//app.module.ts import { NgModule, APP_INITIALIZER } from '@angular/core'; import { AppLoadService } from './app-load.service'; export function loadInitialData(appLoadService: AppLoadService) { return () => appLoadService.loadInitialData(); } { provide: APP_INITIALIZER, useFactory: loadInitialData, deps: [AppLoadService], multi: true } // app-load.service.ts loadInitialData(): Promise<any> { return new Promise((resolve, reject) => { const getConfig= this.http.get<any>(URL); return getConfig.subscribe(response=> { return resolve(); }); ,然后将接收到的意图委托给初始屏幕。

LinkEntryPointActivity

并在class LinkEntryPointActivity : MyBaseActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) val intentClone = intent.clone() as Intent val componentName = intentClone.component val newComponentName = ComponentName(componentName.packageName, SplashActivity::class.java.name) intentClone.component = newComponentName startActivity(intentClone) finish() } } 中将其声明为

AndroidManifest.xml

原始的初始屏幕活动仍应照常处理<activity android:name=".ui.LinkEntryPointActivity" android:launchMode="singleTask" <-- This forces to open the link in a new task android:screenOrientation="portrait"> <!-- Intent filters here --> </activity> 类别中的MAIN操作。