我有一个场景,我需要将位图设置为gridLayout的背景。 我使用了以下代码:
Drawable drawable = new BitmapDrawable(context.getResources(), bitmap);
bgView.setBackgroundDrawable(drawable );
其中bgView是GridLayout位图是我从远程服务器收到的位图。
以上将图像设置为背景,但它会拉伸。 我需要将图像置于背景中心。 任何人都可以帮助我整理如何居中背景图像的问题。
答案 0 :(得分:0)
有些时候,我的情况相同
我把ImageView
作为背景来解决这个问题
它看起来像这样:
grid_item.xml
<FrameLayout>
<!-- wrap original with FrameLayout then put ImageView as bg! -->
<ImageView />
<OriginalLayout>
...
<OriginalLayout>
</FrameLayout>
如果OriginalLayout
是FrameLayout
,RelativeLayout
或类似的东西,则
你不必用FrameLayout
希望它暗示你要解决。
答案 1 :(得分:0)
您必须创建另一个可以填充网格布局而不拉伸的位图。就个人而言,我更喜欢填充完整的背景,将其填入画布(通过缩放)然后进一步裁剪它也称为中心裁剪。我找到了这段代码:
public Bitmap scaleCenterCrop(Bitmap source, int newHeight, int newWidth) {
int sourceWidth = source.getWidth();
int sourceHeight = source.getHeight();
// Compute the scaling factors to fit the new height and width, respectively.
// To cover the final image, the final scaling will be the bigger
// of these two.
float xScale = (float) newWidth / sourceWidth;
float yScale = (float) newHeight / sourceHeight;
float scale = Math.max(xScale, yScale);
// Now get the size of the source bitmap when scaled
float scaledWidth = scale * sourceWidth;
float scaledHeight = scale * sourceHeight;
// Let's find out the upper left coordinates if the scaled bitmap
// should be centered in the new size give by the parameters
float left = (newWidth - scaledWidth) / 2;
float top = (newHeight - scaledHeight) / 2;
// The target rectangle for the new, scaled version of the source bitmap will now
// be
RectF targetRect = new RectF(left, top, left + scaledWidth, top + scaledHeight);
// Finally, we create a new bitmap of the specified size and draw our new,
// scaled bitmap onto it.
Bitmap dest = Bitmap.createBitmap(newWidth, newHeight, source.getConfig());
Canvas canvas = new Canvas(dest);
canvas.drawBitmap(source, null, targetRect, null);
return dest;
}
用法:从远程服务器(Ist Argument),网格布局的宽度和高度(IInd和IIIrd Argument)获取位图,并使用返回的位图作为网格布局的背景。
希望它会有所帮助。 (PS:它不会增加你的视图层次结构另外一个更好的解决方案是在你的网格后面采用imageview并设置它的比例类型centerCrop并在其中设置背景图像)。