Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("video/*"); File file = new File(“/mnt/sdcard/test.3gp”); intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file)); startActivity(Intent.createChooser(intent, "分享列表");