19

Is there any way to change the check box (tick box) color to white in android XML. (I need white color tick box which contain black tick, as the preview I got in android studio inside my real device)

Here is my code for check box

<CheckBox
    android:textSize="15sp"
    android:textColor="#fff"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Save Loging "
    android:id="@+id/checkBox"
    android:layout_below="@id/PasswordeditText"
    android:checked="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:buttonTint="#fff" />

When I add android:buttonTint="#fff" preview show the change I need, but it doesn't work in real device

Design preview

enter image description here

Real Device

enter image description here

Is there any attribute like android:buttonTint which I can use to achieve the changes in real device.

Adeel
  • 2,815
  • 7
  • 22
  • 33

7 Answers7

64

Set the colorAccent to your desired color:

<style name="AppTheme" parent="Theme.AppCompat">
    <item name="colorAccent">#fff</item>
</style>

Or if you don't want to change your main theme, create a new theme and apply it only to the checkbox:

<style name="WhiteCheck">
    <item name="colorAccent">#fff</item>
</style>

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:theme="@style/WhiteCheck"/>
tachyonflux
  • 19,843
  • 7
  • 46
  • 66
11

This is variation of tachyonflux's answer:

Try to change buttonTint:

<style name="my_checkbox_style">
    <item name="buttonTint">#fff</item>
</style>

<CheckBox
            android:id="@+id/my_checkbox"
            style="@style/my_checkbox_style"
            android:background="#000" />
Dragan Stojanov
  • 360
  • 6
  • 10
  • 1
    I have both the buttonTint and the colorAccent items in my style. Works exactly as expected. Thanks. – dazed Aug 25 '17 at 15:51
7

easily we can change checkbox color by using this property in xml

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@color/COLOR_WHICH_YOU_WANT" />
shweta jariya
  • 235
  • 4
  • 7
6

From XML

<androidx.appcompat.widget.AppCompatCheckBox
    android:id="@+id/cbCheck"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:buttonTint="@android:color/white" />

OR From Java/Kotlin:

CompoundButtonCompat.setButtonTintList(cbCheck, ColorStateList.valueOf(Color.WHITE));
Ahamadullah Saikat
  • 3,980
  • 38
  • 32
1

we can change checkbox color using singe line of code

android:buttonTint="@color/app_color" //whatever color
V-rund Puro-hit
  • 5,418
  • 9
  • 29
  • 50
Kishore Reddy
  • 2,266
  • 18
  • 15
0

Try this

<CheckBox
    android:textSize="15sp"
    android:textColor="#fff"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Save Loging "
    android:id="@+id/checkBox"
    android:layout_below="@id/PasswordeditText"
    android:checked="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:button="@android:drawable/checkbox_on_background" />

if CheckBox checked, else in android:button= write "@android:drawable/checkbox_off_background"

HassanUsman
  • 1,615
  • 1
  • 19
  • 36
0
  1. android:buttonTint="@color/white" this line of your button color change

              <CheckBox
                android:id="@+id/checkk"
                android:layout_width="wrap_content"
                android:layout_height="@dimen/_40sdp"
                android:layout_alignParentLeft="true"
                android:background="@color/black"
                android:buttonTint="@color/white"                 
                android:textSize="@dimen/_14sdp" />
    
Mani
  • 902
  • 10
  • 14