woong's
Android Intro 사용하기 본문
Android Intro 사용하기
안녕하세요 . 자주 쓰이게 되는 Intro 효과 나타내기 입니다.
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 27 28 29 30 31 | package com.iw.booklibrary; import android.app.Activity; import android.content.Intent; import android.os.Bundle; public class IntroActivity extends BaseActivity { private static final int SLEEP_TIME = 2000; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_intro); new Thread(new Runnable() { @Override public void run() { try { Thread.sleep(SLEEP_TIME); } catch (Throwable ex) { ex.printStackTrace(); } Intent i = new Intent(IntroActivity.this, MainActivity.class); startActivity(i); finish(); } }).start(); } } |
'Develop > Android' 카테고리의 다른 글
Android 한글 데이터 전송시 깨짐 방지 하기 (0) | 2016.02.14 |
---|---|
Android [Accessibility] Missing contentDescription attribute on image 해결 방법 (0) | 2016.02.14 |
Android ViewHolder 사용하기 (0) | 2016.02.14 |
Android Bundle 객체 전달 하기 (0) | 2016.02.14 |
Android runOnUiThread 사용하기 (0) | 2016.02.14 |
Comments