2013-11-28 123 views
2

我希望ScrollView TableLayout與屏幕具有相同的高度,但爲什麼表只佔用屏幕的一半,而ScrollView則按照預期全屏顯示。Android TableLayout ScrollView

我試着改變表和行的高度作爲wrap_content,但顯示相同的結果。同樣改變桌子的高度作爲固定高度(例如900dp)也不適用。即使最後一排高度也沒有顯示完整的評級欄。好像表格被強制具有特定的寬度。

如果我刪除ScrollView,它工作得很好。

任何人都可以請幫忙。

<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:background="@drawable/border" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context=".EditEntry" > 
    <TableLayout 
     android:id="@+id/tableLayout1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 

     <TableRow 
      android:id="@+id/tr3a" 
      android:padding="2.5dp" 
      android:background="@color/col1" 
      android:gravity="center_vertical" 
      android:layout_width="wrap_content" 
      android:layout_height="0dp" 
     android:layout_weight="1" > 

      <TextView 
       android:id="@+id/lab_bookname" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="@string/bookname" /> 

      <EditText 
       android:id="@+id/bookname" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:hint="@string/definputtext2" /> 

     </TableRow> 

     <TableRow 
      android:id="@+id/tr3" 
      android:padding="2.5dp" 
      android:background="@color/col2" 
      android:gravity="center_vertical" 
      android:layout_width="wrap_content" 
      android:layout_height="0dp" 
     android:layout_weight="1" > 
      <TextView 
       android:id="@+id/lab_printname" 
      android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="@string/print_name" /> 

      <EditText 
       android:id="@+id/printname" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:hint="@string/definputtext2" /> 

     </TableRow> 
     ...................... 
     ...................... 
     ...................... 
    </TableLayout> 
</ScrollView> 

enter image description here

+0

儘量讓你的滾動視圖爲''fill_parent'機器人的高度:layout_height = 「FILL_PARENT」' – GrIsHu

+0

沒有影響,同樣的結果 – abdfahim

+0

@abdfahim你解決問題了嗎? – Karthi

回答

9

在滾動視圖XML加入這行 - >

 android:fillViewport="true" 

這使得子佈局,以充分屏幕,如果是layout_width & layout_heightmatch_parent/fill_parent。。在你的情況下,TableLayout將得到使用這條線的全尺寸..!請享用...!

+0

我也面臨同樣的問題,但你的解決方案不解決我的問題可以請幫助我http://stackoverflow.com/questions/38588702/why-my-scrollview-not-working-properly – Karthi

+0

完美!謝謝 –

0

把一個線性佈局放在作品之間,但我不知道爲什麼直接設置一些高度到表視圖不起作用。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@android:color/black" 
     android:paddingBottom="@dimen/activity_vertical_margin" 
     android:paddingLeft="@dimen/activity_horizontal_margin" 
     android:paddingRight="@dimen/activity_horizontal_margin" 
     android:paddingTop="@dimen/activity_vertical_margin" 
     tools:context=".EditEntry" > 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@android:color/darker_gray" > 

      <TableLayout 
       android:id="@+id/tableLayout1" 
       android:layout_width="match_parent" 
       android:layout_height="1000dp" > 

       <TableRow 
        android:id="@+id/tr3a" 
        android:layout_width="wrap_content" 
        android:layout_height="0dp" 
        android:layout_weight="1" 
        android:background="@color/col1" 
        android:gravity="center_vertical" 
        android:padding="2.5dp" > 

        <TextView 
         android:id="@+id/lab_bookname" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:text="@string/bookname" /> 

        <EditText 
         android:id="@+id/bookname" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:hint="@string/definputtext2" /> 
       </TableRow> 

       <TableRow 
        android:id="@+id/tr3" 
        android:layout_width="wrap_content" 
        android:layout_height="0dp" 
        android:layout_weight="1" 
        android:background="@color/col2" 
        android:gravity="center_vertical" 
        android:padding="2.5dp" > 

        <TextView 
         android:id="@+id/lab_printname" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:text="@string/print_name" /> 

        <EditText 
         android:id="@+id/printname" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:hint="@string/definputtext2" /> 
       </TableRow> 
      </TableLayout> 
     </LinearLayout> 

    </ScrollView>