如何使用Intent在默认图库应用程序中打开/查看图像。以下代码打开了库App,但未显示任何图像。我是android编程的新手。任何帮助将不胜感激。 :)
Intent intent = new Intent(Intent.ACTION_VIEW);
String path = Environment.getExternalStorageDirectory().getPath().toString() + "/my_folder/" + filename;
intent.setDataAndType(Uri.parse(test),"image/*");
startActivity(intent);