How To Add Multiple Child In Horizontal Scroll View In Android
In this application i tag the data using json parsing and binding the data using list adapter and i was add the heading for data in static using table layout, when i scroll horizon
Solution 1:
You have to put one layout as a scrollviews child, then put every other views in that child and it should work fine.
Like this way:
<HorizontalScrollViewandroid:layout_width="wrap_content"android:layout_height="fill_parent"android:id="@+id/horizontalScrollView"><LinearLayout... >
... insert your views in here
</LinearLayout></HorizontalScrollView>
Post a Comment for "How To Add Multiple Child In Horizontal Scroll View In Android"