我遇到了同样的问题:Fixed height of tableRow Android,How to force TableRows to have the same height?但我没有找到答案((( TableRow whis layout_width =“match_parent”,layout_height =“0dp”,android:layout_weight =“1”,每个TableRow包含少量GridView。当GridView为空时,所有TableRow都具有相同的高度,但如果添加项目,则第一行变高。 我的XML:
<TableLayout
android:id="@+id/table"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/activity_padding"
android:clipChildren="false"
android:weightSum="2" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<GridView
android:id="@+id/gridView1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:numColumns="3" >
</GridView>
<GridView
android:id="@+id/gridView2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:numColumns="3" >
</GridView>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<GridView
android:id="@+id/gridView4"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:numColumns="3" >
</GridView>
<GridView
android:id="@+id/gridView5"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:numColumns="3" >
</GridView>
</TableRow>
</TableLayout>
感谢!!!
答案 0 :(得分:0)
将填充设置为表格行..您可以调整高度与其他行相同..