[Android] 어플리케이션 로딩화면(Splash) 구현하기
이번 포시팅은 앱의 로딩 화면을 몇초 동안 띄우고 그 후에 앱을 사용할 수 있는 것이다.
예를 들면 아래와 같이 국민앱인 카카오톡과 같이 카톡을 처음 실행하면 아래 이미지가 로딩된 후 카톡을 사용할 수 있다.
로딩의 장점이라면 로딩하는 시간동안 앱의 기본 설정을 셋팅 할 수 있고, 홍보(?) 효과도 있는것 같다.
자 이제 소스를 보자
레이아웃은 다른 activity 레이아웃과 같이 로딩하고 싶은 이미지로된 레이아웃을 하나 만든다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import android.view.View; import android.view.animation.AnimationUtils; import android.widget.ImageView; public class SplashActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_splash); Handler hd = new Handler(); hd.postDelayed( new splashhandler() , 3000 ); // 3초 후에 hd Handler 실행 } private class splashhandler implements Runnable{ public void run() { startActivity( new Intent(getApplication(), MainActivity. class )); // 로딩이 끝난후 이동할 Activity SplashActivity. this .finish(); // 로딩페이지 Activity Stack에서 제거 } } } |
별로 어렵지 않은 소스다. 끄읏~
출처 : https://blog.woniper.net/166?category=532432
'안드로이드 > 개발 TIP' 카테고리의 다른 글
ButterKnife 사용하기 (0) | 2020.12.09 |
---|---|
구글플레이 개발자 등록하기 (0) | 2020.12.09 |
Android Intent를 이용한 Activity간 Data 공유 (0) | 2020.09.07 |
Android XML Selector 생성 및 적용하기 (0) | 2020.09.07 |
현재 디바이스의 언어 설정값 가져오기 (0) | 2020.04.06 |
[Firebase for android] Realtime DB를 사용한 채팅 앱 만들어보기 (0) | 2018.09.12 |
[안드로이드&JAVA 데이터 처리] JSON. Using the JSONObject in android and java. (0) | 2018.09.12 |
[안드로이드 HTTP 통신] HttpURLConnection으로 웹서버 통신하기 (0) | 2018.09.12 |