さまざまな方法を使用しましたが、プログラムで作成されたRadioButton
の色を変更する方法が見つかりませんでした。 背景画像を使用する以外の方法はありますか? とminSDKVersion
は21
です。以下のように私はRadioButton
を作成しています。プログラムで作成されたラジオボタンの背景色を変更します
RadioButton radio = new RadioButton(co);
さまざまな方法を使用しましたが、プログラムで作成されたRadioButton
の色を変更する方法が見つかりませんでした。 背景画像を使用する以外の方法はありますか? とminSDKVersion
は21
です。以下のように私はRadioButton
を作成しています。プログラムで作成されたラジオボタンの背景色を変更します
RadioButton radio = new RadioButton(co);
プログラムでこれを使用RadioButton
ボタンの色を変更するには。 minSdk is 21
ですので です。この方法でsetButtonTintList
を使用することができます。あなたはラジオボタンの背景色に変更したい場合は
RadioButton raPrivate = new RadioButton(co);
int textColor = Color.parseColor(#000000);
raPrivate.setButtonTintList(ColorStateList.valueOf(textColor));
これを試してみてください:
radioButton.setBackgroundColor(Color.GREEN);
'のRadioButton raPrivate =新しいのRadioButton(コ)。これが私のradioButtonの作成方法です。 –
@qwertyは私の更新コードを使用します。 – Ironman
ありがとう..それは働いた...あなたは私の日を救った! –