に入るが、アプリはGenymotionエミュレータまたはアンドロイド・スタジオエミュレータ両方のエミュレータ上で実行されたとき、それはほぼ完全にそれをスキップしています他のアプリケーションと完全に動作しています。わかりません?スプラッシュ画面が速すぎて表示して、スプラッシュ画面が3秒続くことになっている次のJavaクラス
SplashScreen.java
package com.transcendencetech.juliospizzaprototype;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.view.Window;
/**
* Created by Stormy Forrester on 20/03/2016.
*/
public class SplashScreen extends AppCompatActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.splash_screen);
int secondsDelayed = 4;
new Handler().postDelayed(new Runnable() {
public void run() {
startActivity(new Intent(SplashScreen.this,
SignInActivity.class));
finish();
}
}, secondsDelayed * 3);
}
}
** splash_screen、XML **
にコードを変更してみてください。 4秒は4000ミリ秒です – Blackbelt
int secondsDelayed = 4000; * 3を削除する – yanivtwin