在 2 个应用程序之间传输数据的方式?
Ways of transferring data between 2 apps?
我正在开发一个应用程序,它在设计上应该接受来自其他应用程序的请求(带有一些身份验证令牌)并且应该能够发送请求的数据(媒体文件或本地存储中媒体文件的地址)。如果不在应用程序之间切换,我无法做到这一点。有没有办法让我不知道?
提前致谢。
https://developer.android.com/guide/topics/providers/content-providers
Content providers can help an application manage access to data stored by itself, stored by other apps, and provide a way to share data with other apps. They encapsulate the data, and provide mechanisms for defining data security. Content providers are the standard interface that connects data in one process with code running in another process.
无需进一步了解您正在构建的内容,这是您可以用来在应用程序之间共享数据的一般方法。
听起来您想 运行 在后台执行一些其他应用程序可以调用的任务。请参阅 the documentation on background work to get started. If this does not help you solve the problem, please review the How to Ask Questions 页面并更新您的问题以明确明确您需要帮助的内容。
希望对您有所帮助!
我正在开发一个应用程序,它在设计上应该接受来自其他应用程序的请求(带有一些身份验证令牌)并且应该能够发送请求的数据(媒体文件或本地存储中媒体文件的地址)。如果不在应用程序之间切换,我无法做到这一点。有没有办法让我不知道? 提前致谢。
https://developer.android.com/guide/topics/providers/content-providers
Content providers can help an application manage access to data stored by itself, stored by other apps, and provide a way to share data with other apps. They encapsulate the data, and provide mechanisms for defining data security. Content providers are the standard interface that connects data in one process with code running in another process.
无需进一步了解您正在构建的内容,这是您可以用来在应用程序之间共享数据的一般方法。
听起来您想 运行 在后台执行一些其他应用程序可以调用的任务。请参阅 the documentation on background work to get started. If this does not help you solve the problem, please review the How to Ask Questions 页面并更新您的问题以明确明确您需要帮助的内容。
希望对您有所帮助!