本文实例讲述了android打开本地图像的方法。分享给大家供大家参考。具体如下:
方法一,调用手机安装的图像浏览工具浏览:
Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(intent, 1);
方法二,调用手机自身图像浏览工具浏览:
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程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
本地图像
android 打开本地html、android 打开本地相册、android 打开本地文件、android 打开本地图片、android 打开本地pdf,以便于您获取更多的相关知识。
时间: 2024-09-20 04:18:27