我对表格布局滚动完全感到困惑。我必须实现具有水平和垂直滚动的表格。我还看到了表格修复标题示例,但 tablefixheader 示例使用了适配器来设置数据,但我需要在表格布局中使用 add-view 方法。我使用了下面的代码,但它不能支持两种滚动方式
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" >
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:fadeScrollbars="false">
<TableLayout
android:id="@+id/tableLayoutId"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</HorizontalScrollView>
</ScrollView>