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

can this attribute be changed dynamically in Java code?

android:layout_marginRight

I have a TextView, that has to change its position some pixels to the left dynamically.

I think it has to be done programmatically.

How can I do it?

share|improve this question

1 Answer

up vote 70 down vote accepted

You should check the docs for TextView. Basically, you'll want to get the TextView's LayoutParams object, and modify the margins, then set it back to the TextView. Assuming it's in a LinearLayout, try something like this:

TextView tv = (TextView)findViewById(R.id.my_text_view);
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams)tv.getLayoutParams();
params.setMargins(0, 0, 10, 0); //substitute parameters for left, top, right, bottom
tv.setLayoutParams(params);

I can't test it right now, so my casting may be off by a bit, but the LayoutParams are what need to be modified to change the margin.

NOTE

Don't forget that if your TextView is inside, for example, a RelativeLayout, one should use RelativeLayout.LayoutParams instead of LinearLayout.LayoutParams

share|improve this answer
12  
Just to elaborate in your answer in case other people are looking for this. If you are creating the TextView programmatically then you need to create a new LinearLayout.LayoutParams object too, instead of trying to get one out via .getLayoutParams(); – Ares Oct 26 '11 at 15:27
This works awesome, and it seems like it sets the margins in pixels. Is it possible to set it in dp? – KKendall Oct 12 '12 at 21:37
1  
@KKendall: Just convert your DP to PX first. – kcoppock Oct 12 '12 at 22:20
1  
Don't forget that if your TextView is inside, for example, a RelativeLayout, one should use RelativeLayout.LayoutParams instead of LinearLayout.LayoutParams – dwbrito Feb 27 at 11:57

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.