AndroidStudio为APP设置启动欢迎界面,AndroidStudio添加启动界面之后闪退解决办法

代码是抄的,但是由于直接复制并不能成功运行,所以,将我修改的过程记录下来。
步骤可参考我抄的那篇博客。

下面是我改动的部分

java文件SplashActivity

package com.example.student;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.Window;
import android.view.WindowManager;

public class SplashActivity extends Activity{
    private final int SPLASH_DISPLAY_LENGHT = 3000;  //延迟3秒

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash);
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                Intent intent = new Intent(SplashActivity.this,MainActivity.class);
                SplashActivity.this.startActivity(intent);
                SplashActivity.this.finish();
            }
        }, SPLASH_DISPLAY_LENGHT);
    }
}

xml文件activity_splash

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center_vertical"
    android:orientation="vertical"
    android:background="@drawable/ustbbackground">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="welcome!"
        android:textStyle="italic"
        android:textColorHighlight="@color/colorPrimary"
        android:layout_gravity="center"
        android:textSize="40dp"
        android:layout_marginBottom="80px"/>
    <ProgressBar
        android:id="@+id/progressBarLarge"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:progressDrawable="@android:color/holo_green_light"
        android:progressTint="@color/colorPrimary"/>
</LinearLayout>

下面是更改的内容,主要是将文件名字改成你自己的,这些都比较简单。
在这里插入图片描述
在这里插入图片描述
画红线的都是要改为你的工程里文件的名字的。

下面是原blog里没有说明白的一部分,也是困扰我这个新手几个小时的事。

将启动的第一个页面设置为SplashActivity,同时,将原来的主页面文件添加到其下面。
在AndroidManifest文件里,将中间一段代码改为下面这样

<activity android:name=".SplashActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

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

在这里插入图片描述
将蓝线部分添加上去,否则,虽然启动App有欢迎界面,但立马闪退了。

再次感谢原博主liutaiyi8
其他博客如果出现闪退的问题,可能也是这个原因。我找了好几篇,都没说最后要添加一行代码。可能是太简单了。原谅我一个新手。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值