1. ホーム
  2. android

[解決済み] イメージボタンに透明な背景を設定するには?

2023-05-13 15:49:28

質問

でImageButtonの背景を透明にすることは可能ですか? layout.xml を使っています。

android:background="@android:color/transparent"

同じことをJavaのコードで行うにはどうしたらよいでしょうか? 次のようなものです。 ib.setBackgroundColor(???);

どのように解決するのですか?

これは、背景色を透明に設定するだけの簡単な方法です。

    ImageButton btn=(ImageButton)findViewById(R.id.ImageButton01);
    btn.setBackgroundColor(Color.TRANSPARENT);