2013-01-09 61 views
0

我想實現的是一個簡單的3列11行表格。現在所有數據都以1列和33行顯示。下面是輸出:TableLayout中textview和tablerows的佈局 - Android

Rank 
Percentage 
Score 
1 
1234 
13453 
2 
2352435 
312413 
3 
235325 
235423 

//etc... 

我與TableLayouts的許多網上的例子好惹的,但我所有的輸出保持所有例子是相同的。我在下面只是我嘗試的最後一個。有什麼建議麼?

Highscoresmain.xml

<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/scroller" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    android:fillViewport="true" >" 

    <TableLayout 
     android:id="@+id/tableLayout" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:stretchColumns="1" > 

     <TableRow 
      android:id="@+id/rowHeader" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/rank" 
       android:layout_width="0dip" 
       android:layout_height="wrap_content" 
       android:layout_weight="1" /> 

      <TextView 
       android:id="@+id/percentage" 
       android:layout_width="0dip" 
       android:layout_height="wrap_content" 
       android:layout_weight="1" /> 

      <TextView 
       android:id="@+id/score" 
       android:layout_width="0dip" 
       android:layout_height="wrap_content" 
       android:layout_weight="1" /> 

     <TableRow 
      android:id="@+id/row1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/r1r" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/r1p" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/r1s" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

     <TableRow 
      android:id="@+id/row2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/r2r" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/r2p" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/r2s" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

     //TableRows 1 through 10 are identical. 

     <Button 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:text="MAIN MENU" 
      android:id="@+id/homeBtn" /> 
    </TableLayout> 
</ScrollView> 
+1

我只好把我的對應錶行 – Gridtestmail

+0

之間三個文本視圖中,不一世? – Matt

+0

不,你正在關閉它。 – Gridtestmail

回答

1

做這種方式爲表中的所有行

 <TableRow 
     android:id="@+id/rowHeader" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 

     <TextView 
      android:id="@+id/rank" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" /> 

     <TextView 
      android:id="@+id/percentage" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" /> 

     <TextView 
      android:id="@+id/score" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" /> 
     </TableRow> 
+0

哦,哎呀!沒有注意到我正在關閉''''TableRow'''''。謝謝! – Matt

+0

歡迎您! – Gridtestmail