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 ?
|
I have an TextView in my application. I want to align the text in it to the right. I tried adding
but this doesn't work for me. any other suggestions ?
| |||||
feedback
|
|
I think that you are doing this : | |||
|
feedback
|
|
Make sure that you are not using | |||
|
feedback
|
|
In general, The first one affects the position of the text itself within the View, so if you want it to be right-aligned, then 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. | |||
|
feedback
|
|
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 | |||
|
feedback
|