Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

17 Answers

up vote 504 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"
    android:text="@string/**yourtextstring**"
/>
share|improve this answer
19  
As Jean said, just plain "center" would be shorter. – pjv Dec 31 '10 at 17:42
11  
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
6  
@Rob, if the width and height are wrap_content, then technically, the text is already centered. – JoJo Nov 17 '11 at 4:06
12  
and in java: .setGravity(Gravity.CENTER); – stealthcopter Nov 29 '11 at 23:02
1  
If I want to align TextView relative to another view, but it's text centered in itself? – user517491 Mar 10 '12 at 21:43
show 2 more comments
android:gravity="center" 

will do the trick

share|improve this answer

You can also set it up dynamically using:

textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
share|improve this answer
31  
Or just textview.setGravity(Gravity.CENTER); – Amplify91 Apr 7 '11 at 16:00
android:layout_centerInParent="true"

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

share|improve this answer
1  
This centers the TextView, not the text in it. – anthropomo Jan 12 at 4:08
This does NOT work when there is word-wrap in the TextView. The text will be full-width and multi-line AND LEFT-justified within the TextView. It will appear left-justified on the display. You should use "gravity" as specified in the other answers. – David Manpearl Apr 13 at 3:04

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>
share|improve this answer

In my opinion,

android:gravity="center"

is better than,

android:layout_centerInParent="true"

which is better than,

android:layout_centerHorizontal="true"
android:layout_centerVertical="true"

at least for formatting text.

share|improve this answer

you need to set TextView Gravity (Center Horizontal & Center Vertical) like this

android:layout_centerHorizontal="true"   

and

android:layout_centerVertical="true"

and dynamically using:

textview.setGravity(Gravity.CENTER);
textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
share|improve this answer
Code semantics is wrong. Replace layout_centerhorizontal and layout_centervertical by layout_centerHorizontal and layout_centerVertical ("H" and "V" to uppercase, otherwise it wont work). – yugidroid Jul 31 '12 at 16:15
1  
layout_* tells the View's parent where it wants to be. Without layout_* tells the View how to place its components – Dandre Allison Oct 8 '12 at 7:36

You cab also use combination:

android:gravity="left|center"

Then, if textview width is more than "fill_parent" the text will be still aligned to left (not centered as with gravity set only to "center").

share|improve this answer
You are the man! – capdragon Feb 23 at 14:55

If you are trying to center text on a TableRow in a TableLayout, here is how I achieved this:

<TableRow android:id="@+id/rowName"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:padding="5dip" >
    <TextView android:id="@+id/lblSomeLabel"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:gravity="center"
              android:layout_width="0dp"
              android:layout_weight="100"
              android:text="Your Text Here" />
</TableRow>
share|improve this answer

I used the android:gravity="center" and only in the view with :inputType="textPersonName" the text is center, the view with :inputType="number", the numbers are still flying to the top... :"(

Even iOS 3.0 was very good at things like this :"|

share|improve this answer

In Relative layout, it will be nice with it. and another button and anything else you can add.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ff314859"
    android:paddingLeft="16dp"
    android:paddingRight="16dp">
    <TextView 
        android:id="@+id/txt_logo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="your text here"
        android:textSize="30dp"
        android:gravity="center"              />
        ...other button or anything else...
</RelativeLayout>

works nicely for me.

share|improve this answer

I'm setting the height of the textview and can't get the text to center vertically. It stays at the bottom of the textview. Code is below but is not formatting correctly in this post (even though each line preceeded by 4 spaces).

Problem seems to be that I set textview layout_height to 20dp. If I change layout_height to wrap_content: the text does center vertically - but it's too high for my needs.

The textview is in a relative layout and has layout_centerVertical="true" and gravity="center_horizontal|center_vertical". I've also tried android:gravity="center" and tried omitting the centerVertical + many other options.

share|improve this answer

you can just set the gravity of your textview into CENTER.

share|improve this answer

just use android:gravity="center"

share|improve this answer

Simply in your XML File set textview gravity to center

<TextView
android:gravity="center" />
share|improve this answer

This worked better for me: android:layout_gravity="center". The other way mentioned works but in a few test apps was being overriden. This worked better for me.

share|improve this answer

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

share|improve this answer
Where is your "below method"? – Matt Feb 20 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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