일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WebView
- DataBinding
- OkHttp Interceptor
- Kotlin
- Android Jetpack
- android recyclerview
- Android WebView
- scope function
- 안드로이드
- 안드로이드 갤러리 접근
- Android 12 대응
- 영어공부
- 습관만들기
- 66챌린지
- MVP Architecture
- Kotlin FCM
- Android 12
- Android DataBinding
- 알고리즘 자바
- Android ViewPager2
- Android ProgressBar
- 영어독립365
- 안드로이드 카카오 로그인
- Android Navigation
- Android Interceptor
- Android
- Java
- 안드로이드 fcm
- 카카오 알고리즘
- 프로그래머스 알고리즘
- Today
- Total
목록Android 12 (2)
Developer Geek

PendingIntent Mutability 안드로이드 앱의 targetSdk 버전이 12라면 무조건 PendingIntent 객체에 mutability를 명시해야한다. PendingIntent 란 class PendingIntent: Parcelable 공식문서에는 다음과 같이 설명되어있다. A description of an Intent and target action to perform with it. Instances of this class are created with getActivity, getActivities, getBroadcast and getService; the returned object can be handed to other applications so that they c..

스플래시 화면 변경사항 및 SplashScreen API 기본 사용법 개요 Android 12(targetSdkVersion 31) 이상부터는 SplashScreen을 구현하기 위해서는 SplashScreen API로 사용해야 한다. SplashScreen API 를 이용하지 않음으로써 발생하는 문제점 android:windowBackground 를 사용하는 경우, 스플래시 화면이 Android 12 이상의 버전에서는 안드로이드에서 제공하는 디폴트 스플래시로 변경된다. Activity 를 사용하여 스플래시를 구현한 경우, 스플래시 화면이 Android 12 이상의 버전에서는 안드로이드에서 제공하는 디폴트 스플래시 다음으로 Activity 에서 만들어진 스플래시 화면이 보여진다. SplashScreen A..