Possible Duplicate:
Android: How to resize a custom view programmatically?
What's the best way to change width/height of a widget (I mean, a UI widget, subclass of android.view.View) programmatically?
Doing something like this works, but it doesn't seem quite right:
ViewGroup.LayoutParams params = mSomeView.getLayoutParams();
params.height += 10;
mSomeView.setLayoutParams(params);