«android-notifications» 태그된 질문

상태 알림은 시스템의 상태 표시 줄에 아이콘 (선택 사항 인 티커 텍스트 메시지 포함)과 알림 창에 알림 메시지를 추가합니다.


8
Android 8.1로 업그레이드 한 후 startForeground가 실패 함
휴대 전화를 8.1 Developer Preview로 업그레이드 한 후 백그라운드 서비스가 더 이상 제대로 시작되지 않습니다. 장기 실행 서비스에서 createFor에서 호출되는 지속적인 알림을 시작하기 위해 startForeground 메소드를 구현했습니다. @TargetApi(Build.VERSION_CODES.O) private fun startForeground() { // Safe call, handled by compat lib. val notificationBuilder = NotificationCompat.Builder(this, DEFAULT_CHANNEL_ID) val notification = notificationBuilder.setOngoing(true) .setSmallIcon(R.drawable.ic_launcher_foreground) .build() …


22
INSTALL_FAILED_DUPLICATE_PERMISSION… C2D_MESSAGE
내 앱에서 Google 알림을 사용하고 있으며 지금까지 매니페스트에서 아래 작업을 수행했습니다. <!-- GCM --> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google account. --> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Keeps the processor from sleeping when a message is received. --> <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> <!-- This app has permission to register and …

9
Android O에서 더 이상 사용되지 않는 NotificationCompat.Builder
프로젝트를 Android O로 업그레이드 한 후 buildToolsVersion "26.0.1" Android Studio의 Lint는 팔로우 알림 작성기 메소드에 대해 더 이상 사용되지 않는 경고를 표시합니다. new NotificationCompat.Builder(context) 문제는 Android 개발자 가 Android O의 알림 을 지원하기 위해 NotificationChannel 을 설명하는 설명서를 업데이트하고 스 니펫을 제공하지만 더 이상 사용되지 않는 경고를 제공하는 것입니다. Notification …

18
안드로이드 알림 소리
최신 NotificationCompat 빌더를 사용했는데 소리가 나도록 알림을받을 수 없습니다. 진동하고 빛을 깜박입니다. 안드로이드 문서는 내가 한 스타일을 설정한다고 말합니다. builder.setStyle(new NotificationCompat.InboxStyle()); 그러나 소리가 들리지 않습니까? 전체 코드 : NotificationCompat.Builder builder = new NotificationCompat.Builder(this) .setSmallIcon(R.drawable.ic_launcher) .setContentTitle("Notifications Example") .setContentText("This is a test notification"); Intent notificationIntent = new Intent(this, MenuScreen.class); PendingIntent contentIntent = …

9
작업을 클릭 한 후 알림을 해제하는 방법
API 레벨 16 (Jelly Bean)부터 다음을 사용하여 알림에 조치를 추가 할 수 있습니다. builder.addAction(iconId, title, intent); 그러나 알림에 작업을 추가하고 작업을 누르면 알림이 닫히지 않습니다. 알림 자체를 클릭하면 다음과 같이 알림을 해제 할 수 있습니다. notification.flags = Notification.FLAG_AUTO_CANCEL; 또는 builder.setAutoCancel(true); 그러나 분명히 이것은 알림과 관련된 작업과 관련이 없습니다. 힌트가 있습니까? …

6
알림이 이전 의도 엑스트라를 전달 함
이 코드를 통해 BroadcastReceiver 내부에 알림을 작성 중입니다. String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns); int icon = R.drawable.ic_stat_notification; CharSequence tickerText = "New Notification"; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, tickerText, when); notification.defaults |= Notification.DEFAULT_VIBRATE; long[] vibrate = {0,100,200,200,200,200}; notification.vibrate = vibrate; notification.flags |= Notification.FLAG_AUTO_CANCEL; …

22
수정 방법 : android.app.RemoteServiceException : 패키지에서 게시 된 잘못된 알림 * : 아이콘을 만들 수 없음 : StatusBarIcon
충돌 로그에 다음 예외가 표시됩니다. android.app.RemoteServiceException: Bad notification posted from package com.my.package: Couldn't create icon: StatusBarIcon(pkg=com.my.package user=0 id=0x7f02015d level=0 visible=true num=0 ) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:146) at android.app.ActivityThread.main(ActivityThread.java:5487) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099) at dalvik.system.NativeStart.main(Native Method) 다음 방법을 사용하여 AlarmManager를 통해 설정된 PendingIntent의 IntentService에서 …

17
Android에서 여러 알림을 표시하는 방법
알림을 하나만 받고 있으며 다른 알림이 오면 이전 알림을 대체하고 여기에 내 코드가 있습니다. private static void generateNotification(Context context, String message, String key) { int icon = R.drawable.ic_launcher; long when = System.currentTimeMillis(); NotificationManager notificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); Notification notification = new Notification(icon, message, when); String title = context.getString(R.string.app_name); Intent …

4
Android : 온라인 푸시 알림 테스트 (Google 클라우드 메시징) [닫힘]
닫은. 이 질문은 Stack Overflow 지침을 충족하지 않습니다 . 현재 답변을 받고 있지 않습니다. 이 질문을 개선하고 싶으십니까? Stack Overflow의 주제에 맞게 질문을 업데이트하세요 . 휴일 3 년 전 . 이 질문 개선 업데이트 : GCM 은 더 이상 사용되지 않습니다. FCM을 사용 하세요. 내 애플리케이션에서 Google 클라우드 메시징을 구현하고 …

6
Android 4.1 : 애플리케이션에 대한 알림이 비활성화되었는지 확인하는 방법은 무엇입니까?
Android 4.1은 사용자에게 특정 애플리케이션에 대한 알림을 비활성화하는 확인란을 제공합니다. 그러나 개발자로서 알림 호출이 효과적인지 여부를 알 수있는 방법이 없습니다. 현재 애플리케이션에 대한 알림이 비활성화되어 있는지 확인해야하지만 API에서 해당 설정을 찾을 수 없습니다. 코드에서이 설정을 확인하는 방법이 있습니까?


12
사용자 지정 알림 레이아웃 및 텍스트 색상
내 응용 프로그램은 일부 알림을 표시하며 사용자 기본 설정에 따라 알림에서 사용자 정의 레이아웃을 사용할 수 있습니다. 잘 작동하지만 텍스트 색상 이라는 작은 문제가 있습니다. 재고 Android 및 거의 모든 제조업체 스킨은 알림 텍스트에 밝은 배경에 검은 색 텍스트를 사용하지만 삼성은 그렇지 않습니다. 알림 풀다운에 어두운 배경이 있고 기본 알림 …

3
Lollipop에서 알림 아이콘 배경 변경
나는 통해가는 알림 디자인 패턴 및 알림 아이콘 배경에 대해 이야기하는 아무것도 찾지 못했습니다. 아시다시피, 사용자 지정 알림에 대한 배경은 밝은 회색뿐입니다. 그러나 행 아웃과 같은 앱 또는 단순히 USB 디버깅 알림은 알림 아이콘 배경에 맞춤 색상을 사용합니다. 그 회색을 다른 것으로 바꿀 가능성이 있습니까? (프로그래밍 방식으로 특정 원의 색상)
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.