How can I read SMS messages from the device programmatically in Android?

后端 未结 11 2493
情深已故
情深已故 2020-11-22 02:48

I want to retrieve the SMS messages from the device and display them?

11条回答
  •  遇见更好的自我
    2020-11-22 03:04

    String WHERE_CONDITION = unreadOnly ? SMS_READ_COLUMN + " = 0" : null;
    

    changed by:

    String WHERE_CONDITION = unreadOnly ? SMS_READ_COLUMN + " = 0 " : SMS_READ_COLUMN + " = 1 ";
    

提交回复
热议问题