我已經在Android應用程序集成pushwoosh(未在鈦)pushwoosh響應空..
我成功地得到通知,也..我越來越
我的問題是,
文本顯示在通知區域這是我從woosh過去了..
但無法從意圖提取它
intent.getExtras()的getString(PushManager.PUSH_RECEIVE_EVENT)
而且我的通知不會留在通知區..
它只顯示一次並消失,我不能點擊那個
,因爲它不在那裏待..就像其他通知.. !! ??
請任何人都可以提出任何事情..?
請張貼您的代碼以顯示通知。 – Eran 2013-05-06 12:30:58
我編碼爲按pushwoosh配置指南 http://www.pushwoosh.com/programming-push-notification/android-push-notification-sdk-configuration-guide/ (我檢查並比較了3-4倍) – 2013-05-06 12:49:17
//在onCreate並啓動推管理器 \t \t PushManager pushManager = new PushManager(this,APP_ID,SENDER_ID); \t \t pushManager.onStartup(this); Then //重新登記恢復的接收器 \t registerReceivers(); \t \t pushManager.setVibrateNotificationType(VibrateType.ALWAYS); \t \t pushManager.setSoundNotificationType(SoundType.ALWAYS); \t \t pushManager.setLightScreenOnNotification(true); – 2013-05-06 12:50:10