应用程序开头的启动画面

时间:2017-12-25 01:06:41

标签: android

我需要一些帮助。我的应用程序有问题。我想在开头放一个闪屏。我以前做过。我已经在新项目中完成了代码,布局和所有工作!当我把代码放在我的手机和我的应用程序中的布局上时,应用程序运行完美而没有任何错误。但是当我在手机上打开它时,它会停止并且它不会打开它!你能提出一些建议吗?

我的android manifest.xml:

        android:name=".activities.SplashScreenActivity"
        android:label="@string/splash">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

2 个答案:

答案 0 :(得分:0)

假设您要从SplashScreenActivity启动主要活动。

在你的SplashScreenActivity的onCreate()中:

Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
finish();

前2行通过Intent启动Main活动,第3行杀死SplashScreenActivity,因此您无法从MainActivity返回它。

答案 1 :(得分:0)

public class SplashScreenActivity extends AppCompatActivity {
private  int SLEEP_TIMER = 3;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

    setContentView(R.layout.activity_splash_screen);

    View imageView = findViewById(R.id.imageView);

    Animation animation = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.fade);

    imageView.startAnimation(animation);
    getSupportActionBar().hide();
    LogoLauncher logoLauncher = new LogoLauncher();
    logoLauncher.start();


}

private class LogoLauncher extends Thread {
    public void run() {
        try {
            sleep(1000  * SLEEP_TIMER);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        Intent intent = new Intent(SplashScreenActivity.this,LoginActivity.class);
        startActivity(intent);
        SplashScreenActivity.this.finish();
    }
}