React Native Share file or link(React Native 共享文件或链接)
问题描述
不知道这叫什么,但在 Android 上,一个应用可以打开这个窗口,如果我选择 Gmail,它会自动在 Gmail 中创建一个文件附件.
Not sure what this is called, but on Android an app is able to bring up this window, and if I select, say Gmail, it will automatically create a file attachment in Gmail.
如何在 React Native 中使用 Expo(无需分离)实现这一点?
How can I achieve this in React Native with Expo (without detaching)?
推荐答案
你正在寻找类似 react-native-share.
由于您使用的是 Expo,您可能希望使用 链接(打开到其他应用程序的链接) 指向您使用 react-native-app-link.或者对于 Android 方面更复杂的事情,IntentLauncherAndroid使用一些自定义代码也可以工作.
Since you're using Expo, you'll probably want to use Linking (Opening links to other apps) which points you to using react-native-app-link. Or for something more complicated on the Android side, the IntentLauncherAndroid with some custom code could work as well.
帮助您查找更多信息的关键字是分享、链接、深度链接,如果您了解Android 开发,意图.
Keywords to help you look for more information are sharing, linking, deep linking, and if you know Android development, Intents.
这篇关于React Native 共享文件或链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:React Native 共享文件或链接
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01