Android app开发 如何添加启动界面


打开任意的一个app时,其中大部分都会显示一个启动界面,于我而言印象最深的就是微信的大地球了,启动界面通常情况下展示出的都是自家的logo,但也有甚者则直接把广告放到了上面。

在这里为大家提供两种不同的设置方式:
一种是两个Activity实现,即需要一个启动界面的Activity和一个启动界面执行完后跳转到的Activity

另一种则是由一个Ativity实现,但相对代码量也增加了一些。

下面则开始介绍两种设置启动画面的方式:
第一种(两个Activity):
启动界面的Activity

public class SplashActivity extends Activity{

private static int SPLASH_DISPLAY_LENGHT= 2000; //延迟2秒

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

getWindow().requestFeature(Window.FEATURE_NO_TITLE);//去掉标题
setContentView(R.layout.activity_splash);
new Handler().postDelayed(new Runnable() {
public void run() {
Intent intent = new Intent(SplashActivity.this, MyViewpager.class); //第二个参数即为执行完跳转后的Activity
startActivity(intent);
SplashActivity.this.finish(); //关闭splashActivity,将其回收,否则按返回键会返回此界面
}
}, SPLASH_DISPLAY_LENGHT);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
启动界面对应显示的布局文件

<LinearLayout
android:id=”@+id/splashScreen”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:gravity=”center”
android:orientation=”vertical”>
<ImageView
android:id=”@+id/iv_image”
android:layout_width=”300dp”
android:layout_height=”300dp”
android:src=”@mipmap/icon”/>
<TextView
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
android:text=”@string/app_name”
android:gravity=”center”
android:textSize=”24sp”
android:textColor=”#2B2929″
android:layout_marginTop=”20dp”/>

</LinearLayout>
————————————————
原文链接:https://blog.csdn.net/weixin_43802738/article/details/92813458

搜索

复制

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/272298.html

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论