Android的内容提供商列表提供商、内容、列表、Android

2023-09-03 20:39:30 作者:愿一生一世守护你到白头

我在哪里可以得到内容提供商的完整列表的Andr​​oid提供了开箱? 具体来说,我正在寻找一个内容提供商,列出收到的短信。

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 SMS.

推荐答案

在公开的那些列在android.provider包SDK文档中:

The publicly available ones are listed in the android.provider package in the SDK documentation:

http://developer.android.com/reference/android/provider/package-summary.html

所有其他的没有证件,presumably是有原因的。欢迎您要搜索的Andr​​oid源$ C ​​$ C这些类延伸的ContentProvider ,可能使用Google code搜索。而且,如果你正在改进的Andr​​oid固件,还可以进行查询对Android 开源项目列表,查看如何最适合你的特定需要的功能添加。

All other ones are undocumented, presumably for a reason. You are welcome to search the Android source code for those classes which extend ContentProvider, perhaps using Google Code Search. And, if you are working on improving the Android firmware, you can also make inquiries on one of the Android open source project lists to see how best for you to add in your specific desired capability.