android - 關(guān)于極光推送的通知的內(nèi)容取出來(lái)的問(wèn)題
問(wèn)題描述
如何取出極光推送的通知的內(nèi)容,我試了好久,找不到怎么取出來(lái),我是想取出所有的消息的內(nèi)容,保存到本地自定義的消息中心。
問(wèn)題解答
回答1:你打印下返回的json格式String,如果有值說(shuō)明是你的取值方法有問(wèn)題了,試試fastJson或者GSON
回答2:if (JPushInterface.ACTION_MESSAGE_RECEIVED.equals(action)) { Bundle extras = intent.getExtras(); if (null == extras)return; String title = extras.getString(JPushInterface.EXTRA_TITLE); String message = extras.getString(JPushInterface.EXTRA_MESSAGE); String extraJson = extras.getString(JPushInterface.EXTRA_EXTRA); LogUtils.d('Message title : ' + title); LogUtils.d('Message content : ' + message); LogUtils.d('Message extraJson : ' + extraJson);}回答3:
我也遇到了這個(gè)問(wèn)題,是這樣取出通知的內(nèi)容的:String result = bundle.getString(JPushInterface.EXTRA_ALERT);
相關(guān)文章:
1. javascript - 移動(dòng)端自適應(yīng)2. html5 - java用commons-fileupload上傳文件沒(méi)效果!3. android下css3動(dòng)畫(huà)非常卡,GPU也不差啊4. 關(guān)于docker下的nginx壓力測(cè)試5. docker-machine添加一個(gè)已有的docker主機(jī)問(wèn)題6. docker鏡像push報(bào)錯(cuò)7. docker安裝后出現(xiàn)Cannot connect to the Docker daemon.8. angular.js - angular內(nèi)容過(guò)長(zhǎng)展開(kāi)收起效果9. 為什么我ping不通我的docker容器呢???10. nignx - docker內(nèi)nginx 80端口被占用
