如何从Android Gallery共享图像以响应本机应用

时间:2019-10-11 03:09:25

标签: android react-native

我已在清单文件中添加了意图,但是找不到任何方法来监听本机端传入的照片。 react-native中可用的Linking API是原始的,只能侦听URL链接。有其他解决方案吗?

    <intent-filter>
      <action android:name="android.intent.action.SEND" />
      <category android:name="android.intent.category.DEFAULT" />
      <data android:mimeType="image/*" />
    </intent-filter>
    <intent-filter>
        <action android:name="android.intent.action.SEND_MULTIPLE" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="image/*" />
    </intent-filter>

0 个答案:

没有答案