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-
All you have to do to overcome this problem is to add android:singleLine="true" to the checkBox in your android xml layout:
android:singleLine="true"
checkBox
and nothing special will be added programmatically.