I have an TextView in my application. I want to align the text in it to the right. I tried adding

android:gravity="right"

but this doesn't work for me. any other suggestions ?

link|improve this question

71% accept rate
1  
can you please upload your code ? – Lucifer Jan 23 at 9:03
feedback

4 Answers

up vote 2 down vote accepted

I think that you are doing this : android:layout_width = wrap_content . if this is the case do this : android:layout_width = "fill_parent"

link|improve this answer
android:layout_width="match_parent" also correct – Bishan Jan 23 at 9:20
feedback

Make sure that you are not using android:layout_width="wrap_content" if so then it won't be able to set the gravity because you are not having enough space for the text to align.

link|improve this answer
feedback

In general, android:gravity="right" is different from android:layout_gravity="right".

The first one affects the position of the text itself within the View, so if you want it to be right-aligned, then layout_width= should be either "fill_parent" or "match_parent".

The second one affects the View's position inside its parent, in other words - aligning the object itself (edit box or text view) inside the parent view.

link|improve this answer
feedback

android:layout_gravity is used to align the text view with respect to the parent layout. android:gravity is used to align the text inside the text view.

Are you sure you are trying to align the text inside the text view to the right or do you want to move the text view itself to the right with respect to the parent layout or are you trying to acheive both

link|improve this answer
i'm trying to align the text inside the text view to the right – Bishan Jan 23 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.