2014-08-29 10 views
0

아래 나는 pool_team 열을 strech하고 나머지는 열 너비로 줄이려고합니다. 나는 그것을 올바르게 얻는 것처럼 보일 수 없다. 다른 열은 작은 크기의 정수를 포함하고 pool_team에는 줄 바꿈 할 수있는 긴 이름이 포함됩니다.하나의 열을 늘리고 Android TableLayot에서 다른 문자를 축소하십시오.

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/pool_table" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:stretchColumns="1" 
    android:shrinkColumns="0"> 

    <TableRow 
     android:id="@+id/pool_row" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center"> 

     <TextView 
      android:id="@+id/pool_number" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:layout_weight="1" 
      android:textAlignment="center" /> 

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

     <TextView 
      android:id="@+id/pool_wins" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:layout_weight="1" 
      android:textAlignment="center" /> 

     <TextView 
      android:id="@+id/pool_loses" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:layout_weight="1" 
      android:textAlignment="center" /> 

     <TextView 
      android:id="@+id/pool_point_difference" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:layout_weight="1" 
      android:textAlignment="center" /> 

     <TextView 
      android:id="@+id/pool_place" 
      android:layout_width="0dip" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:layout_weight="1" 
      android:textAlignment="center" /> 
    </TableRow> 

</TableLayout> 
+0

당신은 그것을 인처럼 당신이 보는 것 그것이 무엇처럼 보이는 어떤 이미지를 게시 할 수 있습니다. –

답변

0

이와 비슷한?

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/pool_table" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" > 

<TableRow 
    android:id="@+id/pool_row" 
    android:weightSum="1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:gravity="center" > 

    <TextView 
     android:id="@+id/pool_number" 
     android:layout_width="0dp" 
     android:layout_weight=".1" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="123" /> 

    <TextView 
     android:id="@+id/pool_team" 
     android:layout_width="0dp" 
     android:layout_weight=".5" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="Some longer text that may or may not wrap around to the next line...." /> 

    <TextView 
     android:id="@+id/pool_wins" 
     android:layout_weight=".1" 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="123" /> 

    <TextView 
     android:id="@+id/pool_loses" 
     android:layout_weight=".1" 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="123" /> 

    <TextView 
     android:id="@+id/pool_point_difference" 
     android:layout_width="0dp" 
     android:layout_weight=".1" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="123" /> 

    <TextView 
     android:id="@+id/pool_place" 
     android:layout_weight=".1" 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="123" /> 
</TableRow>