Reputation: 11314
I want to set the height
of the horizontal scroll View
from my code. How is it possible?
....
Upvotes: 0
Views: 591
Reputation: 2930
HorizontalScrollView hv;
hv = new HorizontalScrollView(this);
hv.setMinimumHeight(intMinHeight);
try this:
Upvotes: 2