반응형
상단바 제거 : 매니페스트 -> 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초 후 인텐트 실행
반응형
'Android Studio' 카테고리의 다른 글
[안드로이드] android 키보드 완료 누를 시 (0) | 2017.02.26 |
---|---|
[안드로이드] 여러 액티비티 종료시키기 (4) | 2017.02.09 |
[안드로이드] Fragment findViewById NullPointerException 오류 (2) | 2017.02.06 |
[안드로이드] 지도 65536 오류 (0) | 2017.02.03 |
[안드로이드] 구글 지도 API 구하기 (0) | 2017.02.02 |