CheckBox android:paddingLeft 不兼容问题解决方法

自定义CheckBox的XML修改(主要指红色字体部分):

        android:id="@+id/custom_check_box"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:button="@null"
        android:drawableLeft="@drawable/checkbox_style"
        android:drawablePadding="18dip"
        android:background="@null"

        android:text=" "
        android:textColor="#666666"
        android:textSize="28px" />


你可能感兴趣的:(android控件,android,CheckBox,自定义控件)