本文实例讲述了android打开本地图像的方法。分享给大家供大家参考。具体如下:
方法一,调用手机安装的图像浏览工具浏览:
1
2
3
4
|
Intent intent = new Intent(); intent.setType( "image/*" ); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(intent, 1 ); |
方法二,调用手机自身图像浏览工具浏览:
1
2
3
4
5
6
7
8
9
10
|
Intent intent = new Intent( Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); intent.setType( "image/*" ); PackageManager manager = getPackageManager(); List<ResolveInfo> apps = manager.queryIntentActivities(intent, 0 ); if (apps.size() > 0 ) { startActivityForResult(intent, 0x2001 ); } |
将上述代码写入onClick事件中即可!
希望本文所述对大家的Android程序设计有所帮助。