My customized checkbox (MyCheckbox) has extended from androidx.appcompat.widget.AppCompatCheckBox, but the default styles don\'t apply to it.
MyCheckbox
androidx.appcompat.widget.AppCompatCheckBox
According to this answer, I tried using ContextThemeWrapper to apply the style:
ContextThemeWrapper
class MyCheckbox @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyle: Int = 0) : MaterialCheckBox(ContextThemeWrapper(context, R.style.CheckboxTheme), attrs, defStyle)