I'm trying to build Scrollview that scrolls horizontally and vertically i tried the below code but its not working
<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/ScrollView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<HorizontalScrollView android:id="@+id/HorizontalScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
/// whatever goes here
</HorizontalScrollView>
</ScrollView>
from this post and tried this post too, is there any open source to this kind of View? Any help would be greatly appreciated.