android 10
-
안드로이드 10 (Q) head up notification 띄우기Android 2020. 11. 3. 02:59
build.gradle (app) android { compileSdkVersion 29 ... defaultConfig { ... targetSdkVersion 29 안드로이드 10의 SDK 버전인 29로 설정 NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { int importance = NotificationManager.IMPORTANCE_HIGH; //head up notification NotificationChannel channel ..