2013-01-09 1 views
0

달성하려는 것은 간단한 3 열 11 행 테이블입니다. 현재 모든 데이터가 1 ​​열 33 행으로 표시됩니다. 내가 TableLayouts의 많은 온라인 예제와 함께 주위를 엉망했지만 내 모든 출력이 모든 예는 동일하게 유지TableLayout의 textviews 및 tablerows 레이아웃 - Android

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

//etc... 

: 여기에 출력됩니다. 제가 아래에있는 것은 제가 시도한 마지막 것입니다. 어떤 제안?

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

U는 내가 해당 테이블 행 – 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