从通知托盘按下推送通知时,Android GCM 应用程序崩溃
Posted
技术标签:
【中文标题】从通知托盘按下推送通知时,Android GCM 应用程序崩溃【英文标题】:Android GCM Crashes App when Push Notification is pressed from Notification Tray 【发布时间】:2016-08-04 21:29:45 【问题描述】:我正在使用 GCM 来实现聊天应用程序。我有一个扩展 GcmListenerService 的自定义推送接收器。如果应用程序在后台,当我按下推送通知时,应用程序崩溃。这是应用在后台时处理通知的代码
// verifying whether the app is in background or foreground
if (!NotificationUtils.isAppIsInBackground(getApplicationContext()))
Log.d(TAG, "App is not in background");
// app is in foreground, broadcast the push message
Intent pushNotification = new Intent(Config.ACTION_PUSH_NOTIFICATION);
pushNotification.putExtra("type", Config.PUSH_TYPE_CHATROOM);
pushNotification.putExtra("message", message);
pushNotification.putExtra("chat_room_id", chatRoomId);
sendBroadcast(pushNotification);
// play notification sound
NotificationUtils notificationUtils = new NotificationUtils();
notificationUtils.playNotificationSound();
else
Log.d(TAG, "App is in background");
// app is in background. show the message in notification try
Intent resultIntent = new Intent(getApplicationContext(), ChatRoomActivity.class);
resultIntent.putExtra("chat_room_id", chatRoomId);
showNotificationMessage(getApplicationContext(), title, user.getName() + " : " + message.getMessage(), message.getCreatedAt(), resultIntent);
NotificationUtils 是一个处理通知的自定义类。这是 showNotificationMessage 方法:
public NotificationUtils(Context mContext)
this.mContext = mContext;
public void showNotificationMessage(final String title, final String message, final String timeStamp, Intent intent, String imageUrl)
// notification icon
final int icon = R.mipmap.ic_launcher1;
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
final PendingIntent resultPendingIntent =
PendingIntent.getActivity(
mContext,
0,
intent,
PendingIntent.FLAG_CANCEL_CURRENT
);
final NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
mContext);
Notification notification;
notification = mBuilder.setSmallIcon(icon).setTicker(title).setWhen(0)
.setAutoCancel(true)
.setContentTitle(title)
.setContentIntent(resultPendingIntent)
.setSound(alarmSound)
.setStyle(inboxStyle)
.setWhen(getTimeMilliSec(timeStamp))
.setSmallIcon(R.drawable.ic_notification_small)
.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
.setContentText(message)
.build();
NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(Config.NOTIFICATION_ID, notification);
我关注了其他问题,这些问题指定了应该添加到清单文件中的内容。我把它们都加了。这里也是权限的sn-p:
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" /> <permission
android:name="de.hassib.ble_heart_rate_test.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="de.hassib.ble_heart_rate_test.permission.C2D_MESSAGE" />
<uses-permission android:name="de.hassib.ble_heart_rate_test.permission.C2D_MESSAGE" />
应用中的接收者:
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="de.hassib.ble_heart_rate_test" />
</intent-filter>
</receiver>
服务:
<service
android:name=".service.MyGcmPushReceiver"
android:exported="false">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
<service
android:name=".service.GcmIntentService"
android:exported="false">
<intent-filter>
<action android:name="com.google.android.gms.iid.InstanceID" />
</intent-filter>
</service>
有什么想法我在这里做错了吗?
【问题讨论】:
【参考方案1】:我不明白您为什么要进行该验证,因为必须在通知构建器中使用 PendingIntent 设置操作,并且无论我是否是背景。
我的意思是这样的:
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setContentIntent(resultPendingIntent);
但是您可以验证getApplicationContext()
,因为当应用被杀死时它不可用。
【讨论】:
我确实在方法调用的 notificationUtils 类中使用了 pendingIntent。我编辑了问题并添加了带有通知处理的 sn-p。【参考方案2】:这是由您为通知设置的图标引起的,因为它太大了。您应该像这样调整图标的大小:
ldpi:48x48 mdpi:64x64 hdpi:96x96 xhdpi: 128x128 xxhdpi: 192x192 xxxhdpi: 256x256如果我使用上面提到的图标大小,效果很好。
【讨论】:
以上是关于从通知托盘按下推送通知时,Android GCM 应用程序崩溃的主要内容,如果未能解决你的问题,请参考以下文章
有时一些 android 用户没有通过 GCM 收到推送通知
从 Android gcm 服务器接收重复的推送通知 [关闭]
避免在 Android 中使用通知推送从 GCM 显示自动通知