2017-08-16 74 views
0

我想改變當前看起來像這個current 的複選框顏色(白色框內),應該是這樣的。 desired description here如何更改複選框內部的顏色?

+1

使其定製和使用選擇 –

+0

您可以創建自定義選擇,然後申請您的複選框,這樣[https://stackoverflow.com/questions/31183713/android - 替換複選框樣式與自定義繪圖選擇器](https://stackoverflow.com/questions/31183713/android-replace-checkbox-style-with-custom-drawable-selector) –

+1

可能的重複[如何改變CheckBox的顏色?](https://stackoverflow.com/questions/5854047/how-to-change-the-color-of-a-checkbox) –

回答

0

添加您需要的圖像在drawable

.XML文件中添加以下屬性

android:button="@drawable/img" 

IMG是你所需的背景

0

enter image description here

添加下面一行到你CheckBox的XML代碼

android:button="@android:drawable/checkbox_off_background" 
相關問題