布爾值在我GcmListenerService我得到這個捆數據:的Android無法擺脫捆綁
Bundle[{gcm.notification.e=1, gcm.notification.title=SomeApp, proceed=true, gcm.notification.body=Some text, message=Some message, collapse_key=example.com.SomeApp}]
我可以得到消息通過
bundle.getString("message");
但我不能得到繼續布爾值int包數據。 我用:
bundle.getBoolean("proceed",false);
這總是給假,即使值是捆數據真實。 這很簡單,我不知道我錯過了什麼。 謝謝。
您是否嘗試過使用'bundle.getString(「proceed」);'來查看它是否存儲爲'String'? –
不,我用getBoolean,因爲它有一個默認值。我覺得我將不得不與getString檢查並檢查空值。感謝您的建議。 – ArJ
它被意外發送。 – ArJ