material checkbox style after customize

前端 未结 2 656
孤独总比滥情好
孤独总比滥情好 2021-01-20 08:25

My customized checkbox (MyCheckbox) has extended from androidx.appcompat.widget.AppCompatCheckBox, but the default styles don\'t apply to it.

2条回答
  •  孤独总比滥情好
    2021-01-20 09:02

    According to this answer, I tried using ContextThemeWrapper to apply the style:

    class MyCheckbox @JvmOverloads constructor(context: Context,
                                            attrs: AttributeSet? = null,
                                            defStyle: Int = 0)
    : MaterialCheckBox(ContextThemeWrapper(context, R.style.CheckboxTheme), attrs, defStyle)
    

提交回复
热议问题