Android - Spacing between CheckBox and text

前端 未结 29 2904
广开言路
广开言路 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:50

    Given @DougW response, what I do to manage version is simpler, I add to my checkbox view:

    android:paddingLeft="@dimen/padding_checkbox"
    

    where the dimen is found in two values folders:

    values

    
    
        0dp
    
    
    

    values-v17 (4.2 JellyBean)

    
    
        10dp
    
    
    

    I have a custom check, use the dps to your best choice.

提交回复
热议问题