Right aligning text in android?

前端 未结 1 2061
轻奢々
轻奢々 2021-02-14 03:37

Is there anything special I need to do to get text right aligned in a ?

The following simple example seems to align the text right-edged

1条回答
  •  南笙
    南笙 (楼主)
    2021-02-14 04:23

    Fixed.

    Removed Portion from TextView :

    android:layout_gravity="right"
    android:layout_span="2"
    

    Updated Portion in TextView:

    android:gravity="right"
    android:layout_weight="1.0"
    
    
     
    
          
               
          
          
                

    0 讨论(0)
提交回复
热议问题