我在android gallery中设置了背景图片:
ga.setBackgroundDrawable(R.drawable.myimage);
它的工作。
如何在android gallery中设置背景图片的位置?
详情:
我在背景图像上有一个半透明的图像画廊
因此,我需要将图像置于图库中心的背景图像上
不是全宽图像。
如果无法做到,我如何在图库中的选定图像上设置图像?
答案 0 :(得分:1)
您可以设置背景图片,因为您使用gallery.getSelectedItemPosition()
使用此位置,您应该能够从您提供给图库适配器的图像列表中获取图像
例如,如果它是一个drawables列表:
imageView.setImageDrawable(listDrawables.get(gallery.getSelectedItemPosition()));
至于居中部分你应该设置
<ImageView
...
android:scaleType="centerInside"
... />