Mohit
Mohit

Reputation: 11314

How can I dynamically set the height of the horizontal scroll viewr?

I want to set the height of the horizontal scroll View from my code. How is it possible?

....

Upvotes: 0

Views: 591

Answers (1)

Dhruvil Patel
Dhruvil Patel

Reputation: 2930

 HorizontalScrollView hv;

 hv = new HorizontalScrollView(this);
 hv.setMinimumHeight(intMinHeight);

try this:

Upvotes: 2

Related Questions