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

后端 未结 5 994
走了就别回头了
走了就别回头了 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 19:05

    You should use android:gravity="right". layout_gravity is for the view (EditText) alignment against the container.

提交回复
热议问题