Just want to ask where does the default android messaging app stores and read failed to send messages. I thought it can be queried on content://sms/sent
with STATUS_FAILED
as status. Thanks.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How can I create this custom Bottom Navigation on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
Telephony.Sms.Outbox
. This class will help you retreive messages which were not sent due to some reason.use URI as
content://sms/failed
for retrieving failed sent messages.Similarly other types can be retrieved as :
If you want to retrieve it based on
type
, take a look here.