1
我正在構建PubNub Android應用程序。 在這個應用程序,我收到一條消息,但我不知道如何訪問它。 例如,如何訪問短信?如何解析和檢索PubNub郵件對象
這是響應:
hello_world {"text":"this is a sample message"}
更新
private void notifyUser(Object message) {
Message msg = handler.obtainMessage();
try {
final String obj = (String) message;
msg.obj = obj;
handler.sendMessage(msg);
Log.i("Received msg : ", obj.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
請更多代碼? –
用更多代碼更新。謝謝! –
你想要訪問什麼?哪裏? 從你的代碼中,我看到你的notifyUser()方法中有一個傳入的參數消息。這是你想讀的消息嗎?或者它是Message類的一個實例? –