How do I center the text horizontally and vertically in a TextView in android, so that it appears exactly in the middle of the screen?

link|improve this question

feedback

7 Answers

up vote 238 down vote accepted

I'm assuming you're using XML layout.

<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:gravity="center_vertical|center_horizontal"
    android:text="@string/**yourtextstring**"
/>
link|improve this answer
8  
As Jean said, just plain "center" would be shorter. – pjv Dec 31 '10 at 17:42
2  
This doesn't work when used with a RelativeLayout where the layout's height & width are set to wrap_content – Rob Aug 17 '11 at 19:00
1  
@Rob, if the width and height are wrap_content, then technically, the text is already centered. – JoJo Nov 17 '11 at 4:06
3  
and in java: .setGravity(Gravity.CENTER); – stealthcopter Nov 29 '11 at 23:02
If I want to align TextView relative to another view, but it's text centered in itself? – dj aqeel Mar 10 at 21:43
feedback
android:gravity="center" 

will do the trick

link|improve this answer
This is the best answer. – user128807 May 27 '11 at 20:48
feedback

You can also set it up dynamically using:

textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
link|improve this answer
7  
Or just textview.setGravity(Gravity.CENTER); – Amplify91 Apr 7 '11 at 16:00
This is very helpful – zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz Sep 21 '11 at 20:52
feedback
android:layout_centerInParent="true"

This works when used with a RelativeLayout where the layout's height & width are set to wrap_content.

link|improve this answer
feedback

If you are using TableLayout make sure to set the gravity of the TableRows to center, too. Otherwise it will not work. At least it didn't work with me until i set the gravity of the TableRow to center.

For Example like this:

<TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center">        
    <TextView android:text="@string/chf" android:id="@+id/tv_chf" android:layout_weight="2" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center"></TextView>        
</TableRow>
link|improve this answer
feedback

You can set textview in horizontaly and vartically using below method. add one layout set the layout gravity horizontal and vertical and add the textview in that layout so you have textview in center horizontal and vartical

link|improve this answer
feedback
android:layout_centerhorizontal="true"    

and

 android:layout_centervertical="true"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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