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-line.
As-is, the text is way too close to the checkbox:

|
|
|
I hate to answer my own question, but in this case I think I need to. After checking it out, @Falmarri was on the right track with his answer. The problem is that Android's CheckBox control already uses the android:paddingLeft property to get the text where it is. The red line shows the paddingLeft offset value of the entire CheckBox
If I just override that padding in my XML layout, it messes up the layout. Here's what setting paddingLeft="0" does:
Turns out you can't fix this in XML. You have do it in code. Here's my snippet with a hardcoded padding increase of 10dp.
This gives you the following, where the green line is the increase in padding. This is safer than hardcoding a value, since different devices could use different drawables for the checkbox.
UPDATE - As people have recently mentioned in answers below, this behavior has apparently changed in Jelly Bean (4.2). Your app will need to check which version its running on, and use the appropriate method. |
|||||||||||||||||||||
|
|
Yes, you can add padding by adding padding.
|
|||||||
|
|
Why not just extend the Android CheckBox to have better padding instead. That way instead of having to fix it in code every time you use the CheckBox you can just use the fixed CheckBox instead. First Extend CheckBox:
Second in your xml instead of creating a normal CheckBox create your extended one
|
|||
|
|
I don't know guys, but I tested
It suits me fine. |
|||||||
|
|
Use attribute
|
|||||
|
|
|||||||||||||
|
|
This behavior appears to have changed in Jelly Bean. The paddingLeft trick adds additional padding, making the text look too far right. Any one else notice that? |
|||
|
|
|
If you are creating custom buttons, e.g. see change look of checkbox tutorial Then simply increase the width of btn_check_label_background.9.png by adding one or two more columns of transparent pixels in the center of the image; leave the 9-patch markers as they are. |
|||
|
|
|
If you have custom image selector for checkbox or radiobutton you must set same button and background property such as this:
You can control size of checkbox or radio button padding with background property. |
|||
|