17
我在表格佈局中完全困惑。我必須實現水平和垂直滾動的表格。我也看到表修復頭示例,但tablefixheader示例已使用適配器來設置數據,但我需要表格佈局中的添加視圖方法。 我用下面的代碼,但它不能支持雙向滾動如何在android中水平和垂直滾動表格佈局
<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>
感謝和它的作品真棒...... – user1811379
@ user1811379,歡迎你,有一個很好的編碼。 –
很棒的+1。你應該添加一點解釋它爲什麼工作=) – user2336315