Android Content provider list

后端 未结 4 1605
挽巷
挽巷 2020-12-13 07:45

Where can I get the full list of Content Provider that Android offers out of the box?
Specifically, I\'m looking for a content provider that lists received

4条回答
  •  北海茫月
    2020-12-13 07:48

    The content provider for SMS was removed from the SDK in Android 1.5. It was available in the earlier SDKs though.

    Use these to get the required URIs

    Uri.parse("content://sms")
    Uri.parsr("content://sms/inbox")
    Uri.parsr("content://sms/sent")
    etc
    

    Keep in mind that since these are undocumented they may change in the future.

    For more details look at core/java/android/provider/Telephony.java in the android source code

提交回复
热议问题