0
<CheckBox
 android:id="@+id/CheckBox01_district"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:gravity="end"
 android:padding="10dp"
 android:layout_marginRight="6sp"
 android:focusable="false" />

I have written this for checkbox .Its showing well in Kitkat but showing faded in Marshmallow.

Sushant
  • 254
  • 1
  • 5
  • 15

1 Answers1

0

You should use android.support.v7.widget.AppCompatCheckBox instead of CheckBox :

<android.support.v7.widget.AppCompatCheckBox 
android:id="@+id/CheckBox01_district"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="end"
android:padding="10dp"
android:layout_marginRight="6sp"
android:focusable="false"/> 
Kapil Rajput
  • 11,429
  • 9
  • 50
  • 65