ボタンのドローアブルを縮小するにはどうすればよいですか?
ボタンのドローアブルを小さくするにはどうすればよいですか?アイコンが大きすぎて、実際にはボタンよりも高くなっています。これは私が使用しているコードです: <Button android:background="@drawable/red_button" android:drawableLeft="@drawable/s_vit" android:id="@+id/ButtonTest" android:gravity="left|center_vertical" android:text="S-SERIES CALCULATOR" android:textColor="@android:color/white" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginLeft="25dp" android:layout_marginRight="25dp" android:drawablePadding="10dp"> </Button> 上の方が見た目、下の方が今の様子です。 これを試しましたが、画像が表示されません。:-( Resources res = getResources(); ScaleDrawable sd = new ScaleDrawable(res.getDrawable(R.drawable.s_vit), 0, 10f, 10f); Button btn = (Button) findViewById(R.id.ButtonTest); btn.setCompoundDrawables(sd.getDrawable(), null, null, null);