gpt4 book ai didi

react-native - 分享到 React-Native

转载 作者:行者123 更新时间:2023-12-04 17:48:48 25 4
gpt4 key购买 nike

我正在尝试让 Android 设备上的应用程序共享到我的 React-Native 应用程序。但是,我找不到任何可以帮助我的文档,所以我想知道是否有任何方法可以将其他应用程序的内容共享到我的应用程序?

澄清: enter image description here

我正在尝试将我的应用添加到此列表

最佳答案

您需要允许其他应用启动您的事件。 reference here.

<intent-filter  android:label="Share here!">
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
</intent-filter>

您可能会注意到,This Witchcraft 会将您的应用显示在共享列表中。

为了处理这个负担,请将下一个片段放入您的组件中。任何组件。

componentDidMount() {
Linking.getInitialURL().then((url) => {
console.log('Initial url is: ' + url);
}).catch(err => console.error('An error occurred', err));
}

这个魅力叫做Linking。找到文档 here

关于react-native - 分享到 React-Native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46734515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com