我有這個TableLayout:拉伸TableLayout內滾動型
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout" android:layout_height="fill_parent"
android:layout_alignParentBottom="true" android:scrollbars="horizontal|vertical"
android:layout_width="fill_parent" android:scrollbarStyle="outsideInset">
<HorizontalScrollView android:id="@+id/horizontalView" android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TableLayout android:id="@+id/reportTableLayout"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:stretchColumns="1">
</TableLayout>
</HorizontalScrollView>
</ScrollView>
我已經將所有layout_width到FILL_PARENT,可是我的表列似乎並不舒展,並填寫寬度的剩餘空間。左側仍有餘量,但我希望我的桌子能夠在屏幕的整個寬度上展開。有任何想法嗎?謝謝。
表中有多少列? –