1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 11:42:16 -05:00

Kill the no-op Welcome activity to improve startup performance

This commit is contained in:
Jesse Vincent 2009-12-15 04:06:32 +00:00
parent a1302afe75
commit 34c111eb47
3 changed files with 4 additions and 32 deletions

View File

@ -27,7 +27,9 @@
<uses-permission android:name="com.fsck.k9.permission.READ_ATTACHMENT"/> <uses-permission android:name="com.fsck.k9.permission.READ_ATTACHMENT"/>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="K9" <application android:icon="@drawable/icon" android:label="@string/app_name" android:name="K9"
> >
<activity android:name="com.fsck.k9.activity.Welcome"> <activity
android:name="com.fsck.k9.activity.Accounts"
android:label="@string/app_name">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
@ -122,10 +124,6 @@
android:name="com.fsck.k9.activity.Debug" android:name="com.fsck.k9.activity.Debug"
android:label="@string/debug_title"> android:label="@string/debug_title">
</activity> </activity>
<activity
android:name="com.fsck.k9.activity.Accounts"
android:label="@string/accounts_title">
</activity>
<activity <activity
android:name="com.fsck.k9.activity.FolderList"> android:name="com.fsck.k9.activity.FolderList">
<!-- <!--

View File

@ -252,7 +252,7 @@ public class Accounts extends K9ListActivity implements OnItemClickListener, OnC
Account[] accounts = Preferences.getPreferences(this).getAccounts(); Account[] accounts = Preferences.getPreferences(this).getAccounts();
Intent intent = getIntent(); Intent intent = getIntent();
boolean startup = (boolean)intent.getBooleanExtra(EXTRA_STARTUP, false); boolean startup = (boolean)intent.getBooleanExtra(EXTRA_STARTUP, true);
if (startup && accounts.length == 1) if (startup && accounts.length == 1)
{ {
onOpenAccount(accounts[0], true); onOpenAccount(accounts[0], true);

View File

@ -1,26 +0,0 @@
package com.fsck.k9.activity;
import android.os.Bundle;
import com.fsck.k9.K9Activity;
/**
* The Welcome activity initializes the application and decides what Activity
* the user should start with.
* If no accounts are configured the user is taken to the Accounts Activity where they
* can configure an account.
* If a single account is configured the user is taken directly to the MessageList for
* the INBOX of that account.
* If more than one account is configuref the user is takaen to the Accounts Activity so they
* can select an account.
*/
public class Welcome extends K9Activity
{
@Override
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
Accounts.actionLaunch(this);
finish();
}
}