How to right-align text in an Android TextView or EditText?
问题 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" but this doesn't seem to work. any other suggestions please? 回答1: You should use android:gravity="right" . layout_gravity is for the view (EditText) alignment against the container. 回答2: 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