Уведомление Android GCM: без заголовка

Я создаю приложение для Android и в настоящее время работаю над уведомлениями. Я использую сервис Google Cloud Messaging, для которого я написал следующий код PHP:

<?php
define('API_ACCESS_KEY', 'blablabla');
$registrationIds = array($this->deviceId);

$data = array
(
'title' => 'My Title',
'message' => 'My message',
'subtitle' => 'This is a subtitle. subtitle',
'tickerText' => 'Ticker text here...Ticker text here...',
'vibrate' => 1,
'sound' => 1
);

$fields = array
(
'registration_ids' => $registrationIds,
'data' => $data
);

$headers = array
(
'Authorization: key=' . API_ACCESS_KEY,
'Content-Type: application/json'
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://android.googleapis.com/gcm/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
curl_exec($ch);
curl_close($ch);

Когда я выполняю этот php-файл, я получаю уведомление на моем устройстве Android, как вы можете видеть на следующем снимке экрана. Текст сообщения в порядке.
скриншот Android
Но проблема в том, что заголовок уведомления не «Мой заголовок», как я написал в полезной нагрузке, а «Сообщение GCM» (выглядит как заголовок GCM по умолчанию).
Перепробовал много разных вещей, но не понял этого.

Есть идеи, где я не прав? Спасибо

——— РЕШЕНИЕ ———

Я полностью забыл, что это должно быть обработано на стороне Android … Решение было настроить метод sendNotification () в MyGcmListenerService для обработки дополнительных данных:

private void sendNotification(String title, String message) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle(title)
.setContentText(message)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

Спасибо за ответы!

0

Решение

для того, чтобы установить пользовательский заголовок уведомления, вы должны создать собственное уведомление внутри метода onMessageReceived (String form, Bundle data) класса GcmListenerService … что я сделал для создания пользовательского уведомления, описано в следующем коде:

public class MyGcmListenerService extends GcmListenerService {

private PendingIntent resultPendingIntent;

@Override
public void onMessageReceived(String from, Bundle data) {
NotificationCompat.Builder nBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.app_logo)
.setContentTitle(data.getString(getResources().getString(R.string.notification_title)))
.setContentText(data.getString(getResources().getString(R.string.notification_body)))
.setDefaults(Notification.DEFAULT_VIBRATE)
.setContentIntent(resultPendingIntent);

int mNotificationId = 001;
NotificationManager mNotifyMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
mNotifyMgr.notify(mNotificationId, nBuilder.build());
}
}

где в setContentTitle вы устанавливаете свой пользовательский заголовок уведомления.

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]