Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In xml you can do the following:

<TextView
    ...
    android:layout_centerHorizontal="true"
    ...
/>

How would I, when I have the instance of TextView, do this programmatically?

share|improve this question

3 Answers

up vote 12 down vote accepted

You should use the addRule method of the RelativeLayout.LayoutParams class.

layoutparams.addRule(RelativeLayout.CENTER_HORIZONTAL);
mTextView.setLayoutParams(layoutParams);
share|improve this answer
My browser didn't show yours when I added mine. You posted yours first so you get my vote. – nEx.Software Aug 29 '11 at 18:34
note to set if FALSE, you have to create a new layoutParams from scratch without CENTER_HORIZONTAL and then assign it – max4ever Oct 5 '12 at 10:51

Assuming you have a TextView called stored in a variable tv:

RelativeLayout.LayoutParams lp = (RelativeLayout.LayoutParams) tv.getLayoutParams();
lp.addRule(RelativeLayout.CENTER_HORIZONTAL);
tv.setLayoutParams(lp);

Should do the trick.

share|improve this answer
TextView tv = new TextView(context);
tv.setGravity(Gravity.CENTER_HORIZONTAL);

http://developer.android.com/reference/android/widget/TextView.html#setGravity(int)

share|improve this answer
This will set the gravity of the TextView's content. – Cristian Aug 29 '11 at 18:27
Ah, it looked like that's what he was asking for. – NeilMonday Aug 29 '11 at 18:29

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.