1
我試圖讓短信會話和所有的短信列表像這樣的結構:(這是一個會話結構)。獲取乾淨的短信會話列表和短信
[
"names":[
"Antoine Duval",
"Mike Tyson",
"Marge Simpson"
],
"numbers":[
"+33 7 00 00 00 00",
"+33 7 11 11 11 11",
"+33 7 22 22 22 22"
]
"last_date":"a date",
"last-message":"a message",
"sms"[
[
"text":"a message",
"date":"a date",
"number":"+33 7 00 00 00 00"
],
[
"text":"a message",
"date":"a date",
"number":"+33 7 00 00 00 00"
],
[
"text":"a message",
"date":"a date",
"number":"+33 7 00 00 00 00"
],
(other messages in this conversation)...
]
(other conversations)...
]
我再也沒有它,所以我看着this鏈接。
我不給我收到的消息,而不是我發的消息:'(它只是給我一個消息列表,它不是我的簡潔結構:P
最後的問題是使用「startManagingCursor」,它已被棄用,我沒有找到如何取代它:)
也許我會先列出所有的談話,但我沒有找到如何獲得會話列表:/
將''content:// sms/inbox「'改爲'」content:// sms「'獲取所有消息,如果這就是你想要的。只需放下'startManagingCursor()'調用即可。 –