本文介绍了在加载mainActivity之前显示徽标3秒的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在启动我的Android应用程序时,在主活动加载前3秒在自己的活动中显示一个徽标(自己的活动)。执行此操作的最简单方法是什么?
我搜索了这个论坛,只找到一个关于这个话题的回答问题,但不幸的是,它对我毫无用处。
推荐答案
我想你指的是如何实现闪屏,
创建一个新的空活动,我将其命名为Splash在本例中;
public class SplashScreen extends Activity {
// Sets splash screen time in miliseconds
private static int SPLASH_TIME = 3000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// run() method will be executed when 3 seconds have passed
//Time to start MainActivity
Intent intent = new Intent(Splash.this, MainActivity.class);
startActivity(intent );
finish();
}
}, SPLASH_TIME);
}
}
确保已将Splash Activity设置为清单文件中的启动器活动:
<activity
android:name=".Splash"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
这篇关于在加载mainActivity之前显示徽标3秒的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!