새로운 Firebase 클라우드 메시징 시스템이 포함 된 알림 아이콘
어제 Google은 Google I / O에서 새로운 Firebase를 기반으로하는 새로운 알림 시스템을 발표했습니다. 이 새로운 FCM (Firebase Cloud Messaging)을 Github의 예제와 함께 보았습니다.
알림 의 아이콘은 특정 드로어 블을 선언했지만 항상 ic_launcher입니다.
왜? 메시지 처리를위한 공식 코드는 다음과 달라집니다.
public class AppFirebaseMessagingService extends FirebaseMessagingService {
/**
* Called when message is received.
*
* @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
*/
// [START receive_message]
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
sendNotification(remoteMessage);
}
// [END receive_message]
/**
* Create and show a simple notification containing the received FCM message.
*
* @param remoteMessage FCM RemoteMessage received.
*/
private void sendNotification(RemoteMessage remoteMessage) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
// this is a my insertion looking for a solution
int icon = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? R.drawable.myicon: R.mipmap.myicon;
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(icon)
.setContentTitle(remoteMessage.getFrom())
.setContentText(remoteMessage.getNotification().getBody())
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}
불행히도이 SDK 9.0.0-9.6.1에서 Firebase 알림의 제한 사항. 앱이 백그라운드에 있으면 실행기 아이콘은 콘솔에서 보낸 메시지에 대한 매니페스트 (필요한 Android 포함)에서 사용됩니다.
그러나 SDK 9.8.0에서는 무시할 수 있습니다! AndroidManifest.xml에서 다음 필드를 설정하여 아이콘과 색상을 사용자 정의 할 수 있습니다.
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/notification_icon" />
<meta-data android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/google_blue" />
앱이 포 그라운드에 데이터 메시지가 전송되는 경우 자체 운영을 사용하여 편의를 이용할 수 있습니다. HTTP / XMPP API에서 메시지를 사용하는 경우 항상 아이콘을 사용자 정의 할 수 있습니다.
구현을 사용 서버하여 클라이언트에 메시지를 보내고 알림 유형의 메시지가 아닌 데이터 유형의 메시지를 사용하십시오 .
onMessageReceived앱이 백그라운드 또는 포 그라운드에있는 정의 알림을 생성 할 수 있는지 여부 에 관계없이 발생하는 데 도움이됩니다.
atm 그들은 그 문제에 대해 작업하고 있습니다 https://github.com/firebase/quickstart-android/issues/4
Firebase 콘솔에서 알림을 보내면 기본적으로 앱 아이콘이 사용하고 알림 표시 줄에 있으면 Android 시스템이 해당 아이콘을 흰색으로 바꿉니다.
FirebaseMessagingService를 구현하고 메시지를받을 때 수동으로 알림을 작성해야합니다. 우리는 이것을 개선하기 위해 노력하고 있습니다.
편집 : SDK 9.8.0으로 AndroidManifest.xml에 추가
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/my_favorite_pic"/>
내 솔루션은 ATom의 솔루션과 유사하지만 구현하기가 더 쉽습니다. FirebaseMessagingService를 완전히 섀도 잉하는 클래스를 만들 필요는 없습니다. Intent (최소 버전 9.6.1에서는 공개)를 수신하는 메서드를 재정의하고 추가 정보에서 표시 할 정보를 가져 오면됩니다. "해키"부분은 메서드 이름이 실제로 난독 화되어 Firebase sdk를 새 버전으로 업데이트 할 때마다 변경된다는 점입니다.하지만 Android Studio로 FirebaseMessagingService를 검사하고 유일한 매개 변수로 Intent. 버전 9.6.1에서는 zzm이라고합니다. 내 서비스는 다음과 같습니다.
public class MyNotificationService extends FirebaseMessagingService {
public void onMessageReceived(RemoteMessage remoteMessage) {
// do nothing
}
@Override
public void zzm(Intent intent) {
Intent launchIntent = new Intent(this, SplashScreenActivity.class);
launchIntent.setAction(Intent.ACTION_MAIN);
launchIntent.addCategory(Intent.CATEGORY_LAUNCHER);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* R equest code */, launchIntent,
PendingIntent.FLAG_ONE_SHOT);
Bitmap rawBitmap = BitmapFactory.decodeResource(getResources(),
R.mipmap.ic_launcher);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_notification)
.setLargeIcon(rawBitmap)
.setContentTitle(intent.getStringExtra("gcm.notification.title"))
.setContentText(intent.getStringExtra("gcm.notification.body"))
.setAutoCancel(true)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}
targetSdkVersion을 19로 설정하기 만하면됩니다. 알림 아이콘이 색상으로 표시됩니다. 그런 다음 Firebase가이 문제를 해결할 때까지 기다립니다.
추악하지만 작동하는 방법도 있습니다. FirebaseMessagingService.class를 디 컴파일하고 동작을 수정합니다. 그런 다음 클래스를 yout 앱의 올바른 패키지에 넣고 dex에서 메시징 라이브러리 자체의 클래스 대신 사용하십시오. 매우 쉽고 작동합니다.
방법이 있습니다 :
private void zzo(Intent intent) {
Bundle bundle = intent.getExtras();
bundle.remove("android.support.content.wakelockid");
if (zza.zzac(bundle)) { // true if msg is notification sent from FirebaseConsole
if (!zza.zzdc((Context)this)) { // true if app is on foreground
zza.zzer((Context)this).zzas(bundle); // create notification
return;
}
// parse notification data to allow use it in onMessageReceived whe app is on foreground
if (FirebaseMessagingService.zzav(bundle)) {
zzb.zzo((Context)this, intent);
}
}
this.onMessageReceived(new RemoteMessage(bundle));
}
이 코드는 버전 9.4.0에서 가져온 것입니다. 메서드는 난독 화로 인해 다른 버전에서 다른 이름을 갖습니다.
FCM 콘솔과 HTTP / JSON ...을 통해 동일한 결과로 알림을 트리거하고 있습니다.
제목, 전체 메시지를 처리 할 수 있지만 아이콘은 항상 기본 흰색 원입니다.
코드의 내 사용자 지정 아이콘 (setSmallIcon 또는 setSmallIcon) 또는 앱의 기본 아이콘 대신 :
Intent intent = new Intent(this, MainActivity.class);
// use System.currentTimeMillis() to have a unique ID for the pending intent
PendingIntent pIntent = PendingIntent.getActivity(this, (int) System.currentTimeMillis(), intent, 0);
if (Build.VERSION.SDK_INT < 16) {
Notification n = new Notification.Builder(this)
.setContentTitle(messageTitle)
.setContentText(messageBody)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(pIntent)
.setAutoCancel(true).getNotification();
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//notificationManager.notify(0, n);
notificationManager.notify(id, n);
} else {
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);
Notification n = new Notification.Builder(this)
.setContentTitle(messageTitle)
.setContentText(messageBody)
.setSmallIcon(R.drawable.ic_stat_ic_notification)
.setLargeIcon(bm)
.setContentIntent(pIntent)
.setAutoCancel(true).build();
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//notificationManager.notify(0, n);
notificationManager.notify(id, n);
}
앱이 백그라운드에 있으면 알림 아이콘이 onMessage Receive 메서드로 설정되지만 앱이 포 그라운드에 있으면 알림 아이콘이 매니페스트에 정의 된 아이콘이됩니다.
이것을 쓰십시오
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_notification" />
바로 아래 <application.....>
내 문제는 간단하지만 알아 채기 어려웠 기 때문에이 질문에 답을 추가 할 것이라고 생각했습니다. 특히 태그를 사용하여 값을 지정 com.google.firebase.messaging.default_notification_icon하는을 만들 때 기존 메타 데이터 요소를 복사 / 붙여 넣기했습니다 android:value. 이것은 알림 아이콘에서 작동하지 않으며 일단 변경하면 android:resource모든 것이 예상대로 작동합니다.
'IT' 카테고리의 다른 글
| 프로그래밍 방식으로 전화를 거는 방법? (0) | 2020.07.23 |
|---|---|
| 분할 기능을 사용하지 않고 버전 번호 비교 (0) | 2020.07.23 |
| 한 달에 일수에서 (0) | 2020.07.23 |
| .NET에서 전달은 어떻게 전달됩니까? (0) | 2020.07.23 |
| 각도 ng- 변화 지연 (0) | 2020.07.23 |

