Android - Spacing between CheckBox and text

前端 未结 29 2828
广开言路
广开言路 2020-11-27 09:24

Is there an easy way to add padding between the checkbox in a CheckBox control, and the associated text?

I cannot just add leading spaces, because my label is multi-

29条回答
  •  春和景丽
    2020-11-27 10:07

    For space between the check mark and the text use:

    android:paddingLeft="10dp"
    

    But it becomes more than 10dp, because the check mark contains padding (about 5dp) around. If you want to remove padding, see How to remove padding around Android CheckBox:

    android:paddingLeft="-5dp"
    android:layout_marginStart="-5dp"
    android:layout_marginLeft="-5dp"
    // or android:translationX="-5dp" instead of layout_marginLeft
    

提交回复
热议问题