1. ホーム

[解決済み】AndroidのボタンにdrawableLeftをプログラム的に設定するには?

2022-04-14 09:45:14

質問

ボタンを動的に作成しています。 最初にXMLを使ってスタイルを整えましたが、以下のXMLをプログラマティックにしようとしています。

<Button
    android:id="@+id/buttonIdDoesntMatter"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:text="buttonName"
    android:drawableLeft="@drawable/imageWillChange"
    android:onClick="listener"
    android:layout_width="fill_parent">
</Button>

今のところ、こんな感じです。 drawable 以外は全部できます。

linear = (LinearLayout) findViewById(R.id.LinearView);
Button button = new Button(this);
button.setText("Button");
button.setOnClickListener(listener);
button.setLayoutParams(
    new LayoutParams(
        android.view.ViewGroup.LayoutParams.FILL_PARENT,         
        android.view.ViewGroup.LayoutParams.WRAP_CONTENT
    )
);      

linear.addView(button);

解決方法は?

を使用することができます。 setCompoundDrawables メソッドで行います。例を参照してください。 ここで . を使わずに使ってみました。 setBounds で、うまくいきました。どちらかの方法で試してみてください。

アップデイト : リンク切れに備えて、ここにコードをコピーしておきます。

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
img.setBounds(0, 0, 60, 60);
txtVw.setCompoundDrawables(img, null, null, null);

または

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
txtVw.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);

または

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);