使用Expo在本机上共享图像和文件

时间:2018-11-22 04:21:08

标签: android react-native expo

我已经保存了要使用FileSystem.downloadAsync在本地共享的文件

Share.share适用于iOS。如何共享我在Android本地保存的图像?

我尝试过

这两种解决方案似乎都不适用于Expo。

我使用的是本机版本:https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz

FileSystem.downloadAsync(url, FileSystem.documentDirectory+filename).then(({uri})=>{

    if(Platform.OS == "android"){
        // ???
    }
    else{
        Share.share({url:uri});
    }

})

我有什么想念的吗?

2 个答案:

答案 0 :(得分:1)

为了让用户共享保存在(展览)应用程序中的内容,我们采用了这种结构。 (这适用于iOS和Android)。

  1. 导入共享:
import * as FileSystem from 'expo-file-system';
import * as Sharing from 'expo-sharing';
  1. 添加到按钮上(或任何位置)
  <Button
   name="share"
   onPress={() =>
      openShareDialogAsync(media, {
         video: media.meta.fileType === 'video',
         })
       }
   />
  1. 在用户手机中共享视频或图像到任何应用程序
 const openShareDialogAsync = async (mediaProp, options) => {
    const fileDetails = {
      extension: options.video ? '.mp4' : '.jpg',
      shareOptions: {
        mimeType: options.video ? 'video/mp4' : 'image/jpeg',
        dialosTitle: options.video
          ? 'Check out this video!'
          : 'Check out this image!',
        UTI: options.video ? 'video/mp4' : 'image/jpeg',
      },
    };
    const downloadPath = `${FileSystem.cacheDirectory}${mediaProp.media_id}${fileDetails.extension}`;
    const { uri: localUrl } = await FileSystem.downloadAsync(
      mediaProp.url,
      downloadPath
    );
    if (!(await Sharing.isAvailableAsync())) {
      showMessage({
        message: 'Sharing is not available',
        description: 'Your device does not allow sharing',
        type: 'danger',
      });
      return;
    }
    await Sharing.shareAsync(localUrl, fileDetails.shareOptions);
  };

希望这会有所帮助:]

答案 1 :(得分:0)

从SDK33开始,即使您使用的是Android,也可以使用Expo Sharing将任何类型的文件共享给可以处理其文件类型的其他应用。

请参阅:https://docs.expo.io/versions/latest/sdk/sharing/

用法非常简单:

import * as Sharing from 'expo-sharing'; // Import the library

Sharing.shareAsync(url) // And share your file !