3

这个问题包含几个子问题。我从这个问题开始分叉这些。我最终会通过删除这个问题来清理。

以下程序理论上将共享一个 hello-world 文本文件。代码运行,但共享到 Dropbox 或 Gmail(仅通过两个具体示例)失败。

public class MainActivity extends Activity {
    @Override protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        String filename = "hellow.txt";
        String fileContents = "Hello, World!\n";
        byte[] bytes = fileContents.getBytes();
        FileOutputStream fos = null;
        try {
            fos = this.openFileOutput(filename, MODE_PRIVATE);
            fos.write(bytes);
        } catch (IOException e) {                       
            e.printStackTrace();
        } finally {
            try {
                fos.close();
            } catch (IOException e) {                       
                e.printStackTrace();
            }
        } 

        File file = new File(filename);
        Intent shareIntent = new Intent();
        shareIntent.setAction(Intent.ACTION_SEND);
        shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
        shareIntent.setType("application/txt");
        startActivity(Intent.createChooser(shareIntent, getResources().getText(R.string.send_to)));

        file.delete();
    }
}

除了send_to在 r​​es/values/strings.xml 中添加值之外,我对 Eclipse 创建的泛型所做的唯一另一对更改是在 AndroidManifest.xmlHello, World中添加以下标记:<provider>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

    <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="com.mycorp.helloworldtxtfileprovider.MainActivity"
        android:exported="false"
        android:grantUriPermissions="true" >
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/my_paths" />
    </provider>

    <activity
        android:name="com.mycorp.helloworldtxtfileprovider.MainActivity"
        ...

...并在 res/xml/my_paths.xml 中添加以下内容

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <files-path name="files" path="." />
</paths>

我的主要问题是第一个,但是当你在这个话题上时,对问题 2-4 的讨论也会很有趣。

  1. 为什么上面的程序会失败?
  2. 确实是这样的情况,如果一个人需要一个 custom ContentProvider,那么一个人需要扩展那个类,但是如果一个人只需要一个FileProvider,那么一个人可以在没有派生的情况下使用那个类?
  3. 在这段代码中,我需要使用filename两次——一次 with openFileOutput,另一次 with new File()。有没有办法避免这种重复(这可以保证引用的是同一个文件)?
  4. 在调用后立即删除文件是否安全startActivity(..),或者是否有必要设计一个回调来等待得知文件已上传/共享。(实际文件可能需要一些时间才能共享/上传。)

编辑

该代码运行良好,并显示了要发送到的应用程序列表。

如果我选择 Dropbox,我可以很好地选择位置。Dropbox 发送通知“上传到 Dropbox”,然后是“上传失败:my_file.txt”。

如果我选择 Gmail,我可以填写收件人并且文件似乎已附加,但在“发送消息..”之后我得到“无法发送附件”。

4

2 回答 2

6

1.

用于FileProvider.getUriForFile(...)构造 URI。这会将启动的活动定向到您的 FileProvider(然后它可以从您的应用程序的私有文件目录中提供文件)。Uri.fromFile(...)不起作用,因为启动的活动将尝试直接访问私有目录。

设置FLAG_GRANT_READ_URI_PERMISSION以便启动的活动被授予对 FileProvider 构造的 URI 的读取权限。

最后,作为 MIME 类型,“text/plain”可能比“application/txt”更好。

我遇到了一些问题,无法使其在设备上始终如一地工作。这是迄今为止我最好的选择(如果我改进它会编辑):

    final String auth = "org.volley.sndcard_android.fileprovider";
    final Uri uri = FileProvider.getUriForFile(activity, auth, file);
    final String type = activity.getContentResolver().getType(uriForFile);

    final Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setDataAndType(uri, type);
    shareIntent.putExtra(Intent.EXTRA_STREAM, uriForFile);
    shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    final Intent chooser = Intent.createChooser(shareIntent, "<title>");
    activity.startActivity(chooser);

仅设置类型适用于我的 Nexus 5,但不适用于我的三星平板电脑。三星平板电脑似乎需要 URI 作为数据才能授予权限。另请注意,intent.getData()取消任何先前的调用,intent.setType()反之亦然,因此您必须使用组合方法,如上所述。

Gmail 似乎将附加数据解释为默认收件人地址。非常烦人!如果有人有更好的解决方案,请分享(双关语,我来自哥德堡)。

于 2013-12-28T21:47:28.897 回答
0

2.是的,确实如此。您会看到这ContentProvider是一个抽象类,因此要使用自定义内容提供者,必须对其进行扩展。作为FileProvider一个子类ContentProvider(它不是抽象的),程序员可以FileProvider在没有子类的情况下使用它。

3.为了确保相同的文件,您可以按照下面的示例代码 -

String fileName = "my_file.txt";
String fileData = "sample file content";

// Get the file
File file = new File(this.getFilesDir(), fileName);
if (!file.exists()) {
    file.createNewFile();
}

// Write data to file
FileWriter fileWriter = new FileWriter(file);
fileWriter.write(fileData);
fileWriter.close();

// Get the uri
Uri uri = Uri.fromFile(file);

// Share the file with corresponding uri
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.setType("application/txt");
startActivity(Intent.createChooser(shareIntent, "Send To"));

4.不,打电话后立即删除文件是不安全的startActivity()。因为startActivity()是非阻塞函数调用,它会立即返回。您必须等待文件被共享的时间。您可以使用startActivityForResult(). 看看它是否达到目的。

于 2013-09-25T17:40:08.877 回答