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?
|
|
|
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:
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
|
|||||||||||||||
|