30 如何制作带有圆角的ImageView? 在Android中,默认情况下,ImageView是一个矩形。如何在ImageView中使其成为一个圆角矩形(将Bitmap的所有4个角都切掉为圆角矩形)? 573 android imageview android-imageview android-image rounded-corners
10 如何从图库(SD卡)中为我的应用程序选择图像? 该问题最初是针对Android 1.6提出的。 我正在我的应用程序中处理照片选项。 我的活动中有一个按钮和一个ImageView。当我单击按钮时,它将重定向到图库,并且我可以选择图像。所选图像将出现在我的ImageView中。 343 android android-image android-gallery
17 如何在Android中清除ImageView? 我正在将ImageViews用于显示,但是在某些时候我没有值可言。 那么如何清除ImageViewAndroid中的? 我试过了: mPhotoView.invalidate(); mPhotoView.setImageBitmap(null); 他们都没有清除视图,它仍然显示以前的图像。 277 android android-imageview android-resources android-image clear
16 如何从Uri获取位图? 如何从Uri获取Bitmap对象(如果我成功将其存储在 /data/data/MYFOLDER/myimage.png或中file///data/data/MYFOLDER/myimage.png)以在应用程序中使用它? 有谁知道如何实现这一目标? 209 android uri android-image android-bitmap
6 在Android中从内存中保存和读取位图/图像 我要做的是将图像保存到手机的内部存储器中(不是SD卡)。 我该怎么做? 我已经将图像直接从相机获取到应用程序中的图像视图,并且一切正常。 现在,我想要的是将该图像从“图像视图”保存到我的android设备的内存中,并在需要时访问它。 谁能指导我该怎么做? 我对android有点陌生,所以,请提供详细的程序,不胜感激。 161 android image android-image android-bitmap
17 “位图太大,无法上传到纹理中” 我正在将位图加载到ImageView中,并看到此错误。我收集到此限制与OpenGL硬件纹理(2048x2048)的大小限制有关。我需要加载的图像是约4000像素高的捏缩放图像。 我尝试关闭清单中的硬件加速,但没有任何乐趣。 <application android:hardwareAccelerated="false" .... > 是否可以将大于2048像素的图像加载到ImageView中? 154 android android-imageview android-image android-bitmap
5 如果知道图像的名称,如何获取图像的资源ID? 如果知道图像的名称(在Android中),如何获取图像的资源ID? 133 android android-image android-resources
4 从sdcard将图像文件读取到位图中,为什么会出现NullPointerException? 如何从SD卡将图像文件读入位图? _path = Environment.getExternalStorageDirectory().getAbsolutePath(); System.out.println("pathhhhhhhhhhhhhhhhhhhh1111111112222222 " + _path); _path= _path + "/" + "flower2.jpg"; System.out.println("pathhhhhhhhhhhhhhhhhhhh111111111 " + _path); Bitmap bitmap = BitmapFactory.decodeFile(_path, options ); 我正在为位图获取NullPointerException。这意味着位图为空。但是我有一个图像“ .jpg”文件存储在sdcard中,作为“ flower2.jpg”。有什么问题? 105 android android-sdcard android-image
4 关于Android图片和资产大小 我需要澄清一些关于我的应用的图片资源的疑问, 如果我在xml文件中指定[图片视图]的高度为50度 我应该从资源文件夹中选择哪种类型的屏幕? drawable, hdpi, ldpi, mdpi, xhdpi, 具有50像素的高度图像, 与基本图像相比,较大,较小尺寸的图像所占的百分比是多少, 就像在iOS中,@ 2x实际上是图像大小的2倍,而您以编程方式说是正常大小, 谢谢! 86 android android-resources android-image android-screen-support
13 在Android的默认图库图片查看器中使用URI打开图片 我已经提取了图像uri,现在我想使用Android的默认图像查看器打开图像。甚至更好的是,用户可以选择用于打开图像的程序。如果您尝试打开文件,诸如文件资源管理器之类的工具会为您提供帮助。 83 android android-image
8 如何在Android的ListView中显示图像列表? 如何使用ListView显示图像列表?我正在运行时下载图像。图像总数不固定。 69 android listview android-image