如何在SD或内部存储中显示android imageview中的图像

时间:2016-03-26 12:29:26

标签: android image

我尝试了以下代码,但是当它启动Google Drive App并向我显示错误无效格式

String completePath = Environment.getExternalStorageDirectory() + "/images/"+"rose.jpeg";
File file = new File(completePath);
Uri imageUri = Uri.fromFile(file);
Intent i = new Intent(Intent.ACTION_VIEW, imageUri);
startActivity(i);

0 个答案:

没有答案