728x90
반응형
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
finish();
startActivity(new Intent(getApplicationContext(), MainActivity.class));
}
}, 1500); // 1.5초후 run의 내용을 실행
액티비티를 실행할때 아래와 같이 사용 할 수도 있습니다.
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
startActivity(intent);
728x90
반응형
'안드로이드' 카테고리의 다른 글
[안드로이드] AlertDialog 문제 발생시 (0) | 2020.12.05 |
---|---|
[안드로이드] 화면 해상도 가져오기 (0) | 2020.12.05 |
안드로이드 커스텀 캘린더 사용하기 ( 4 - 특정 날짜에 점을 표시하기 ) (3) | 2020.08.13 |
안드로이드 프래그먼트 갱신(새로고침) (0) | 2020.07.28 |
안드로이드 액티비티에서 프래그먼트로 값 전달하기 (0) | 2020.07.28 |