Как уменьшить размер рисуемой кнопки?

как я могу сделать drawable на кнопке меньше? Иконка слишком большая, фактически выше, чем кнопка. Вот код, который я использую:

    <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>

Верхний - как он должен выглядеть, нижний - как он выглядит сейчас.

The upper is how it should look, the lower how it looks right now.

Я попробовал это, но изображение не отображается :-(

    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);
81
задан Ronnie 24 September 2011 в 15:12
поделиться