Android - Spacing between CheckBox and text

前端 未结 29 2846
广开言路
广开言路 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 09:44

    API 17 and above, you can use:

    android:paddingStart="24dp"

    API 16 and below, you can use:

    android:paddingLeft="24dp"

提交回复
热议问题