How can I setup ScrollView
vertically & horizontally? I tried with the code below, but it didn't work.
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbarFadeDuration="1000"
android:scrollbarSize="12dip"
android:background="@color/red" >
<HorizontalScrollView android:id="@+id/horizontalScrollView1" android:layout_width="wrap_content" android:layout_height="wrap_content">
<TableLayout android:layout_width="match_parent" android:layout_marginTop="10dp" android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:stretchColumns="1" android:collapseColumns="2">
</TableLayout>
</HorizontalScrollView>
</ScrollView>
Here is my all code: http://pastebin.com/ysRhLMyt