如何使用xml保留按钮背景图像的宽高比

时间:2013-07-19 14:38:33

标签: android

我在xml中声明了一组Buttons(不是ImageButtons)。它们包含背景图像。我希望能够通过使用权重来指示Button通过xml的宽度......但我想让高度由图像的纵横比决定。

我看到similar question here,答案涉及添加android:adjustViewBounds="true",但问题涉及ImageViews而不是Buttons,当我尝试添加相同的Button时{{1}}代码,似乎无效。

可以实现我想要的吗?

1 个答案:

答案 0 :(得分:0)

您可以使用:

android:scaleType="fitXY" 
在Button或ImageButton的布局中

(如果使用ImageButton,则更好。)