2013-07-19 56 views
1

我有一套Buttons(不是ImageButtons)在xml中聲明。它們包含背景圖像。我希望能夠通過xml,通過使用重量來決定Button的寬度...但我想讓高度由圖像的縱橫比決定。如何保留一個按鈕的背景圖像與xml的長寬比

我看到一個similar question here,答案涉及其中添加android:adjustViewBounds="true"但有關ImageViews而非Buttons這個問題,當我試圖同補充我Button代碼,它似乎沒有工作。

可以實現我想要的嗎?

回答

0

您可以使用:

android:scaleType="fitXY" 

在您的按鈕或ImageButton的(這是更好,如果你使用的ImageButton)的佈局。

+0

我想使用Button而不是ImageButton,因爲我想在其上放置一些文本(數字)。我知道我可以在圖像上包含數字,但數字可以是1到40之間的任何數字 - 這是很多圖像。 – Mick

相關問題