2013-12-11 64 views
0

我有同樣的問題,作爲這些主題:Fixed height of tableRow Android,How to force TableRows to have the same height?但我還沒有找到答案(( )TableRow whispering layout_width =「match_parent」,layout_height =「0dp」,android :layout_weight = 「1」,每個的TableRow包含幾個GridView控件GridView的時候是空的,所有的TableRow具有相同的高度,但如果添加項目,第一行變得更高 我的XML:。如何強制TableRow具有相同的高度

<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

設置填充到表格行..您可以調整高度相同的其他行..

相關問題