Android Studio

[안드로이드] 스플레쉬 화면 (splash)

i-moo 2017. 2. 7. 14:22
반응형

상단바 제거 : 매니페스트 -> android:theme="@style/AppTheme.NoActionBar"


Splash 화면 구현 : 스플레쉬 화면이 2초 뜨고 로그인 화면으로 넘어간다.

Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {

Intent Intent = new Intent(SplashActivity.this, LoginActivity.class);
startActivity(Intent);
finish();


}
}, 2000);    // 2초 후 인텐트 실행



반응형