Android:如何设置ImageButton的src图像的高度/宽度?
Android:如何设置ImageButton的图像(源图像而不是背景)的高度/宽度?
我想设置顶层图像(不是背景)图像的高度/宽度,图像的大小应该自定义而不是自动填充按钮
Android: how to set the height/width of the image(src image intead of the background) of a ImageButton?
I want to set the height/width of the top level image(not the background) image, the size of image should be customized instead of fullfill the button automatically
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以只使用
ImageButton
的scaleType
属性。根据您的需要将其设置为
fitXY
或fitCenter
或其他任何值。像这样
You can just Use the
scaleType
attribute ofImageButton
.Set it to
fitXY
orfitCenter
or anything else according to your need.like this
您可以使用 Bitmap.createScaledBitmap 将图像缩放到您想要的大小。
You can use Bitmap.createScaledBitmap to scale the image to the size you want.
我遇到了同样的问题...更改图像按钮的“src”图像的大小(不是按钮的大小,只是图像的大小)。
我做了什么——
奇怪...但它有效。
谢谢,
I had same problem... change the size of 'src' image of image button(not the size of button just image only).
what i did--
weird... but it worked.
thanks,
Padding将帮助您自定义源图像以提供所需的高度和宽度。
Padding will help you customize the source image to provide the required height and width.
xml
编辑:(java代码)基于https://thinkandroid.wordpress.com/2009/12/25/resizing-a-bitmap/
xml
EDIT: (java code) based on https://thinkandroid.wordpress.com/2009/12/25/resizing-a-bitmap/