android studio checkbox color code example

Example 1: android change checkbox color

<android.support.v7.widget.AppCompatCheckBox 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    app:buttonTint="@color/COLOR_HERE" />

Example 2: android change checkbox color

<CheckBox
  ...
  android:buttonTint="@color/tint_color" />

Example 3: android checkbox tint color

<CheckBox
  ...
  android:buttonTint="@color/tint_color" />

Example 4: how to change checkbox color in android

<android.support.v7.widget.AppCompatCheckBox
                android:id="@+id/check"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:buttonTint="@color/checkbox_filter_tint"
                tools:targetApi="21"/>

Tags:

Css Example