Android - Spacing between CheckBox and text

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

    Checkbox image was overlapping when I used my own drawables from selector, I have solve this using below code :

    CheckBox cb = new CheckBox(mActivity);
    cb.setText("Hi");
    cb.setButtonDrawable(R.drawable.check_box_selector);
    cb.setChecked(true);
    cb.setPadding(cb.getPaddingLeft(), padding, padding, padding);

    Thanks to Alex Semeniuk

提交回复
热议问题