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

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

    You may use android:layout_alignParentRight="true" to align the EditText's right edge to its parent's right edge. Also, if you really want to use the layout_gravity or gravity attributes, check out this article that discusses the proper use of them.

提交回复
热议问题