Align text left, checkbox right

前端 未结 13 2472
孤街浪徒
孤街浪徒 2020-12-29 18:28

I\'m trying to create a layout for a ListView, with a checkbox to the right and some text to the left. The checkbox should be aligned all the way to the right and the TextV

13条回答
  •  难免孤独
    2020-12-29 18:59

    for first time you must set button to @null

    android:button="@null"
    

    if you want to onl move android checkbox to right use :

    android:drawableRight="?android:attr/listChoiceIndicatorMultiple"
    

    otherwise if you like to have custom image for checkbox use:

    android:drawableRight="@drawable/selector_check_box"
    

    and for set gravity to right :

    android:gravity="right|center_vertical"
    

    full action for use customize checkbox:

    
    
        
        
        
        
        
        
        
        
        
        
    
    

    images :

    enter image description here enter image description here enter image description here enter image description here enter image description here

提交回复
热议问题