1

我用谷歌搜索了很多但没有成功。我想通过以下代码在我的应用程序中共享视频文件:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("video/mp4"); //or even video mpeg not working!
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + outputFileInformation.getFullPath()));
startActivity(Intent.createChooser(intent, getString(R.string.share)));

我尝试了其他一些代码,但是如果我选择Viber在共享列表中,选择收件人后没有任何反应,屏幕闪烁并且没有任何反应。(我必须说分享image/png没有问题。我真的需要尽快完成这项工作。我可以轻松地从画廊分享该视频而没有任何问题,但现在可以在我的应用程序中工作......

4

1 回答 1

1

我设法让它工作。我必须以另一种方式制作 Uri,这是我用于从视频文件路径制作 Uri 的代码(您也可以将其更改为图像)

public static Uri getVideoContentUri(Context context, File imageFile) {
    String filePath = imageFile.getAbsolutePath();
    Cursor cursor = context.getContentResolver().query(
            MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
            new String[] { MediaStore.Video.Media._ID },
            MediaStore.Video.Media.DATA + "=? ",
            new String[] { filePath }, null);
    if (cursor != null && cursor.moveToFirst()) {
        int id = cursor.getInt(cursor
                .getColumnIndex(MediaStore.MediaColumns._ID));
        Uri baseUri = Uri.parse("content://media/external/video/media");
        return Uri.withAppendedPath(baseUri, "" + id);
    } else {
        if (imageFile.exists()) {
            ContentValues values = new ContentValues();
            values.put(MediaStore.Video.Media.DATA, filePath);
            return context.getContentResolver().insert(
                    MediaStore.Video.Media.EXTERNAL_CONTENT_URI, values);
        } else {
            return null;
        }
    }
}
于 2014-11-11T22:41:08.613 回答