gpt4 book ai didi

android - 如何显示 GCM 推送通知的自定义 UI?

转载 作者:行者123 更新时间:2023-11-29 15:43:24 27 4
gpt4 key购买 nike

我想在我的应用中显示一条通知,如下图所示:

Push Notification

我已经经历了this问题和this Github 问题。它说您必须将您的数据作为消息中的有效负载发送到 GCM 服务器,并且当用户单击通知时,您可以通过 Intent 在应用程序中访问此数据。

我要发送的信息是:

body: {"to":"\/topics\/global","data":{"LOL":"abc","LOL1":"xyz"},"notification":{"icon":"icon","title":"App Notification Title","body":"qwerty","click_action":"notification_click_action","sound":"default"}}

这是我的 GCM 监听器服务代码:

   public class MyGcmListenerService extends GcmListenerService {

VolleySingleton mVolleySingleton;
ImageLoader mImageLoader;
Bitmap bitmap;

/**
* Called when message is received.
*
* @param from SenderID of the sender.
* @param data Data bundle containing message data as key/value pairs.
* For Set of keys use data.keySet().
*/
// [START receive_message]

@Override
public void onMessageReceived(String from, Bundle data) {

Log.e("Message Received: ", from);

String title = data.getString("title");
System.out.println("Title "+ data.toString());
String subTitle = data.getString("subTitle");
String expandTitle = data.getString("expandTitle");
String imageUrl = data.getString("imageUrl");
String action = data.getString("action");
String offerAction = data.getString("offerAction");
String offerImageUrl = data.getString("offerImageUrl");
System.out.println(bundleToString(data));

sendNotification(data);
}

@Override
public void onDeletedMessages() {
// sendNotification("Deleted messages on server");
}

@Override
public void onMessageSent(String msgId) {
// sendNotification("Upstream message sent. Id=" + msgId);
}

@Override
public void onSendError(String msgId, String error) {
// sendNotification("Upstream message send error. Id=" + msgId + ", error" + error);
}

private void sendNotification(final Bundle data) {

if(data.getString("imageUrl") == null){
sendNotification(data,null);
} else {
mVolleySingleton = VolleySingleton.getInstance();

Handler uiHandler = new Handler(Looper.getMainLooper());
uiHandler.post(new Runnable() {
@Override
public void run() {
mImageLoader = mVolleySingleton.getImageLoader();
mImageLoader.get(data.getString("imageUrl"), new ImageLoader.ImageListener() {
@Override
public void onResponse(ImageLoader.ImageContainer response, boolean isImmediate) {

if (response.getBitmap() != null) {
bitmap = response.getBitmap();
sendNotification(data, bitmap);
}
}

@Override
public void onErrorResponse(VolleyError error) {
bitmap = null;/*BitmapFactory.decodeResource(getApplicationContext().getResources(),
R.mipmap.logo);*/
}
});
}
});

}
}

private void sendNotification(Bundle data,Bitmap bitmap){

String title = data.getString("title");
String subTitle = data.getString("subTitle");
String expandTitle = data.getString("expandTitle");
String imageUrl = data.getString("imageUrl");
String action = data.getString("action");
String offerAction = data.getString("offerAction");
String offerImageUrl = data.getString("offerImageUrl");
long defaultId = Long.parseLong(data.getString("Id"));
long defaulttitleId = Long.parseLong(data.getString("titleId"));
long defaultTagId = Long.parseLong(data.getString("tagId"));

Log.d("Test321", "in MyGcmListenerService Id = " + defaultId + " PtitleId = " +
defaulttitleId + " TagId = " + defaultTagId);

int smallIconDrawable;
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP){
smallIconDrawable = R.mipmap.logo;
} else {
smallIconDrawable = R.mipmap.logo;
}
Intent intent;
Bundle bundle = new Bundle();

if(defaultId != 0 && defaulttitleId != 0 ){
Log.d("Test123","Push to 2page");
intent = new Intent(this, DetailActivity.class);
bundle.putLong(KEY_ID,defaultId);
bundle.putLong(KEY_TITLE_ID, defaulttitleId);
bundle.putLong(KEY_TAGID, defaultTagId);
bundle.putLong("pushnotification",1);
intent.putExtras(bundle);
} else {
Log.d("Test123","push to mainactivity");
intent = new Intent(this, MainActivity.class);
}
intent.putExtra("pushnotification",action);
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);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(smallIconDrawable)
.setLargeIcon(BitmapFactory.decodeResource(getApplication().getResources(),R.mipmap.logo))
.setContentTitle(title)
.setContentText(subTitle)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
if(bitmap != null){
notificationBuilder.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(bitmap));
}else{
notificationBuilder.setStyle(new NotificationCompat.BigTextStyle().bigText(expandTitle));
}
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());

}

public static String bundleToString(Bundle bundle) {
if (bundle == null) {
return null;
}
String string = "Bundle{";
for (String key : bundle.keySet()) {
string += " " + key + " => " + bundle.get(key) + ";";
}
string += " }Bundle";
return string;
}
}

消息已成功收到,出现通知但不是我想要的 onMessageReceived()没有被调用。只有当用户在我的 Activity 中单击 GCM 发送的默认通知时,我才能获取我作为键值对传递的数据。我见过很多显示自定义通知的应用程序。那么,必须有某种方法来实现这种通知吗?感谢您的帮助。

最佳答案

onMessageReceived 不会被调用,因为您的负载中有 notification 标记。

如果你想拥有自己的通知,你需要删除它并只在你的有效负载中发送数据。当您这样做时,您的 onMessageReceived 将被调用,然后您必须使用 Notification.Builder 类创建您自己的通知。

如果你想要构建器之外的东西,你可以通过阅读 this 创建你自己的通知

关于android - 如何显示 GCM 推送通知的自定义 UI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36945702/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com