tags:

views:

31

answers:

2

Hello In my android application i am using a table inside a scrollview but am not able to scroll horizontally if the length of content is more. Could you please let me know any solution for this?

Thanks in advance:)

A: 

XML layout:

<ScrollView ...>

    <HorizontalScrollView ...>

        YOUR TABLE HERE

    </HorizontalScrollView>

</ScrollView>
radek-k
Yes it works.Thanks radek.
Remmyabhavan
A: 

it works but it does not work the one like Gallery App in Android. it stuck when you scroll verticall, after that it does not scroll horizantory. I am still figuring out how to do this like in Gallery View!

Blue Moon