我为GCM推送通知编写了一个IntentService。 我收到消息但是向用户显示我的通知有问题。 这是我的代码:
import com.google.android.gms.gcm.GoogleCloudMessaging;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.TaskStackBuilder;
import android.util.Log;
public class GcmIntentService extends IntentService {
public static final int NOTIFICATION_ID = 1;
public GcmIntentService() {
super("GcmIntentService");
}
public static final String TAG = "GCM test";
@Override
protected void onHandleIntent(Intent intent) {
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
String messageType = gcm.getMessageType(intent);
if (!intent.getExtras().isEmpty()) { // has effect of unparcelling Bundle
if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
sendNotification("Send error: " + intent.getExtras().toString());
} else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) {
sendNotification("Deleted messages on server: " + intent.getExtras().toString());
// If it's a regular GCM message, do some work.
} else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
// Post notification of received message.
sendNotification("message:\n" + intent.getStringExtra("message"));
Log.i(TAG, "Received: " + intent.getExtras().toString());
}
}
// Release the wake lock provided by the WakefulBroadcastReceiver.
GcmBroadcastReceiver.completeWakefulIntent(intent);
}
private void sendNotification(String msg) {
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_notif)
.setContentTitle("My notification")
.setContentText(msg);
Intent resultIntent = new Intent(this, PopupMessageActivity.class);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addParentStack(PopupMessageActivity.class);
stackBuilder.addNextIntent(resultIntent);
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(
0,
PendingIntent.FLAG_UPDATE_CURRENT
);
mBuilder.setContentIntent(resultPendingIntent);
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
}
我没有看到错误。我的意思是,我复制了Androids developer guide。
中的代码此代码唯一能做的是,小图标(在本例中为“ic_notif”)显示在手机的通知栏中。 但是没有文字或通知弹出给用户。
我使用android-studio。 我的调试设备是带有android 4.0.3(API 15)的huawai u8666e。 至少我希望此API级别是我对此应用程序的最低要求。
答案 0 :(得分:1)
对于Lollipop之前的版本,您所看到的是正常设计的Android行为。
设计逻辑是这种方法创建了一个更干净的界面,并且不会通过在他们的面前放置一个弹出窗口来中断用户的当前操作。 (关于哪种方法更好,有很多争论 - iOS弹出窗口与Android通知)。
当创建Notification
时,Lollipop会在设备窗口顶部创建一个小弹出窗口,从而稍微改变一下。
如果你真的想要强制显示一个弹出对话框,你应该考虑设计一个全屏"通知。
请参阅Android开发人员文档:
使用此方法,您可以使用所需的任何自定义布局创建新的Activity
,然后启动该方法,而不是将通知放在状态栏中。
(完整实施全屏通知将超出此帖的范围)
我建议不要强制全屏通知,除非在极少数情况下,例如闹钟或电话呼叫应用。相反,我会建议您坚持Android的设计方式并使用操作系统。