How to right-align text in an Android TextView or EditText?

后端 未结 5 973
走了就别回头了
走了就别回头了 2020-12-30 18:17

I have an EditText in my application. I want to align the text in it to the right instead of the default left. I tried adding

android:layout_gravity=\"right         


        
5条回答
  •  天涯浪人
    2020-12-30 18:47

    You can jst set property for edit text in property window i.e. Gravity to right or by adding code of lin e in xml file of UI : android:gravity="right"

提交回复
热议问题