Search code examples
androidhorizontalscrollview

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?

....


Solution

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

    try this: