美文网首页
图片设置联系人头像和壁纸

图片设置联系人头像和壁纸

作者: 学习不断 | 来源:发表于2018-01-11 17:11 被阅读24次

//设置联系人头像和壁纸

Intent intent =new Intent(Intent.ACTION_ATTACH_DATA);

String path = Environment.getExternalStorageDirectory().getPath() +"/3.png";

File image =new File(path);

Uri uri = Uri.fromFile(image);

intent.setDataAndType(uri,"image/*");

intent.putExtra("mimeType","image/*");

intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

startActivity(Intent.createChooser(intent,"设置为"));

相关文章

网友评论

      本文标题:图片设置联系人头像和壁纸

      本文链接:https://www.haomeiwen.com/subject/ofdtoxtx.html