概述
1.通过文件后缀获取文件类型
if (fileName.contains(".")) {
String substring = fileName.substring(fileName.lastIndexOf(".") + 1);
MimeTypeMap singleton = MimeTypeMap.getSingleton();
if (singleton.hasExtension(substring)) {
fileType = singleton.getMimeTypeFromExtension(substring);
} else {
fileType ="";
}
}
2.获取文件uri两种方式
第一种通过FileProvider获取uri
值:content://包名.fileprovider/root_path/storage/emulated/0/jiujinData/文件名字.jpg
FileProvider.getUriForFile(context.getApplicationContext(), context.getPackageName() + ".fileprovider", doc.getFile())
第二种通过ContentResolver获取uri
值:content://media/external/images/media/74824
public static Uri getImagePathFromURI(Context context, String path) {
ContentResolver cr = context.getContentResolver();
StringBuffer buffer = new StringBuffer();
buffer.append("(").append(MediaStore.Images.ImageColumns.DATA)
.append("=").append("'").append(path).append("'")
.append(")");
Cursor cur = cr.query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, new String[]{MediaStore.Images.ImageColumns._ID}, buffer.toString(), null, null);
int index = 0;
if (cur == null) {
return null;
}
for (cur.moveToFirst(); !cur.isAfterLast(); cur.moveToNext()) {
index = cur.getColumnIndex(MediaStore.Images.ImageColumns._ID);
index = cur.getInt(index);
}
if (index != 0) {
Uri uri_temp = Uri.parse("content://media/external/images/media/" + index);
return uri_temp;
}
return null;
}
为何使用两种uri? 测试发现华为鸿蒙系统下分享多图如果不使用第二种则无法识别为图片
无法识别为图片则分享微信提示无法分享多文件。
第二种一般为图库获取后的uri
如果全部使用第二种uri则不显示图片名称 所以目前单独华为使用第二种uri
public static void shareFiles(Activity context, ArrayList<FileInfoBean> fileInfoBeans) {
try {
if (fileInfoBeans.isEmpty()) {
return;
}
Intent intent = new Intent();
if (fileInfoBeans.size() == 1) {
intent.setAction(Intent.ACTION_SEND);//设置分享
Uri uri = FileProvider.getUriForFile(context.getApplicationContext(), context.getPackageName() + ".fileprovider", fileInfoBeans.get(0).getFile());
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setDataAndType(uri, fileInfoBeans.get(0).getType());
intent.putExtra(Intent.EXTRA_TEXT, getAppName(context));
} else {
intent = new Intent(Intent.ACTION_SEND_MULTIPLE);
ArrayList<CharSequence> extraTextArray = new ArrayList<>();
final ArrayList<Uri> uris = new ArrayList<>();
for (FileInfoBean doc : fileInfoBeans) {
extraTextArray.add(getAppName(context));
if (isHuaWei()) {
uris.add(getImagePathFromURI(context, doc.getFile().getPath()));
} else {
uris.add(FileProvider.getUriForFile(context.getApplicationContext(), context.getPackageName() + ".fileprovider", doc.getFile()));
}
}
intent.setType("image/*");
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
intent.putCharSequenceArrayListExtra(Intent.EXTRA_TEXT, extraTextArray);
}
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory("android.intent.category.DEFAULT");
Intent chooser = Intent.createChooser(intent, getAppName(context));
context.startActivityForResult(chooser, SHAR_FILE_CODE);
} catch (Exception e) {
e.printStackTrace();
}
}
最后
以上就是粗犷海燕为你收集整理的android调用系统方法分享多图或单图的全部内容,希望文章能够帮你解决android调用系统方法分享多图或单图所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复