回答

1

要更改RadioButton按鈕顏色編程使用。 因爲你的minSdk is 21。您可以通過這種方式使用setButtonTintList

RadioButton raPrivate = new RadioButton(co); 
int textColor = Color.parseColor(#000000); 
raPrivate.setButtonTintList(ColorStateList.valueOf(textColor)); 
+0

'單選按鈕raPrivate =新的單選按鈕(CO); '這是我創建我的radioButton的方式。 –

+1

@qwerty使用我的更新代碼。 – Ironman

+0

謝謝..它的工作...你救了我的一天! –

1

,如果你想改變的單選按鈕的背景顏色試試這個:

radioButton.setBackgroundColor(Color.GREEN); 
相關問題