我在按鈕中添加了一個名爲「star」的圖像,圖片出現了,但它使按鈕變大。將圖像添加到按鈕而不調整大小
<Button
android:id="@+id/latest_photoB"
android:layout_height="87dp"
android:layout_weight="1"
android:background="#dcdcdc"
android:drawableTop="@drawable/star"
android:text="Latest Photos"
android:textSize="10dp"
android:textColor="#000000" />
我嘗試了許多不同的方法,例如使它成爲imagebutton
。
我試過android:background = image
,但沒有奏效。我如何添加圖片並保持相同尺寸?
你想保持它與大小一樣嗎?如果你設置了背景,那麼設置它應該保持這個尺寸的高度和寬度。 – Eluvatar