Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mac 패키지 관리자
- Github 등록
- Execution failed for task ':test'.
- 여러 개
- 다음으로 이동
- Chat GPT
- TextView 일부분
- Android Flavor
- git
- 안드로이드 자동으로 포커싱
- AWS
- git cannot identify version of git executable
- MySQL
- 5회 인증
- Github Token
- codeigniter
- docker에서 mysql 실행
- Android Studio
- php
- XML Opacity
- 팝업 바깥 레이어
- nextFocusDown
- Linux 패키지 관리자
- sourceSet
- PHP Storm
- 챗지피티
- 챗GPT
- Location Permission
- InvalidTestClassError
- junit
Archives
- Today
- Total
목록handler (1)
128june
[Android Studio] 자연스러운 페이지 이동하기
처음 인트로에서 자동으로 몇초 후 이동하도록 하기 위해서 Handler를 사용했다. 추가로 Location Permission 기능을 확인해서 없다면 해당 페이지로 이동하도록 추가하였다. Handler Handler mHandler = new Handler() { @Override public void handleMessage(Message msg) { // isLocationPermission true : Main 으로 이동 // isLocationPermission false : 권한동의 페이지로 이동 if(isLocationPermission()) { Intent it = new Intent(Intro.this, MainActivity.class); startActivity(it); finish()..
Android Studio
2021. 2. 27. 14:13