Android打开当地文件

Android打开本地文件Intent intent new Intent()intent.setType(image/*)intent.setAction(Intent.A

Android打开本地文件

Intent intent = new Intent();intent.setType("image/*");intent.setAction(Intent.ACTION_GET_CONTENT);startActivityForResult(intent, 1);