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-
API 17 and above, you can use:
android:paddingStart="24dp"
API 16 and below, you can use:
android:paddingLeft="24dp"