-2
我正在開發一個應用程序,我正在使用一個按鈕。在按鈕的左側,我正在使用圖像。問題是圖像尺寸很大,並且不適合按鈕尺寸。如何調整圖像大小以使其適合按鈕。 Plz給我一些解決方案。 Xml是這樣的。圖像將如何適應按鈕
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_weight="0"
android:weightSum="1"
android:orientation="horizontal" >
<Button
android:id="@+id/btn1"
style="?android:attr/buttonStyleSmall"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableLeft="@drawable/blue"
android:gravity="left|center"
android:text="Wallpapers"/>
</Linearlayout>
thanx的答覆,並提醒我正確的方法。 – HBBR