gpt4 book ai didi

Android启动画面一开始是白色的?

转载 作者:太空宇宙 更新时间:2023-11-03 11:58:51 26 4
gpt4 key购买 nike

当我启动我的应用程序时,我看到一个白屏几秒钟,然后出现启动画面。

我想知道我的应用程序的大小是否会影响它(它是 17.7MB)。还是因为我的测试设备很旧 (HTC Desire HD) 并且里面的数据太多了?

或者这是正常行为?或者我的代码可能有问题,如下所示...

list 的一部分:

    <activity android:name=".SplashView"
android:noHistory="true"
android:screenOrientation="portrait"
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=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:configChanges="orientation" >
<intent-filter >
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>

飞溅 Activity :

public class SplashView extends SherlockActivity {
private final int SPLASH_DISPLAY_LENGHT = 1000;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.splash_view);
try {
RefreshRatingsTask urt = new RefreshRatingsTask();
urt.execute();
} catch (Exception e) {
// ignore
}
new Handler().postDelayed(new Runnable() {

@Override
public void run() {
Intent mainIntent = new Intent(SplashView.this,
MainActivity.class);
SplashView.this.startActivity(mainIntent);
SplashView.this.finish();
}

}, SPLASH_DISPLAY_LENGHT);
}
}

谢谢

最佳答案

Android 使用您的初始 Activity 的主题来显示虚拟 Activity,同时将您的应用程序加载到内存中。

缩小您的应用程序将有助于减少等待时间,使用主题设置启动画面的样式将使其不那么引人注目。

This blog post由 Cyril Mottier 提供更多详细信息。

关于Android启动画面一开始是白色的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17181455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com