Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我们想与其他 Android 应用程序共享我们的数据,
(1) 我们可能会创建一个 SQlite 数据库并使其可供其他应用程序访问,或者
(2) 创建一个ContentProvider。
上述两种方法的基本区别是什么?
ContentProvider 正在向其他应用程序公开数据,非内容提供程序数据库只能由该应用程序访问。