0

我有一個ScrollView佈局與TableLayout其中我有一個TableRow它由三個TextViews組成。scrollview與tablelayout和線性佈局

當我嘗試將TextViews與屏幕對齊時,問題就出現了。 TextViews不佔用屏幕的空間和種類。

我重視的代碼太多,如果你們需要對其進行審覈......

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_reciept" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="com.example.spuck.LayoutTable"> 

    <RelativeLayout 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/relativeLayout"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="49dp" 
      android:src="@drawable/the_one_3" 
      android:id="@+id/the_one" 
      android:layout_alignParentTop="true" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentStart="true" /> 


    </RelativeLayout> 
    <ScrollView 
     android:layout_width="match_parent" 
     android:layout_height="300dp" 
     android:id="@+id/scrollView2" 
     android:layout_below="@+id/relativeLayout" 
     android:layout_above="@+id/addButton"> 


      <TableLayout 
       android:id="@+id/maintable" 
       android:layout_width="match_parent" 
       android:layout_height="300dp"> 

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

        <LinearLayout android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:orientation="horizontal" 
         android:id="@+id/linear_layout_two_table_layout"> 


         <TextView 
          android:layout_width="0dp" 
          android:layout_height="wrap_content" 
          android:text="Date" 
          android:textAlignment="center" 
          android:textSize="20dp" 
          android:layout_weight="0.5" 
          android:background="@drawable/cell_shape" 
          /> 

         <TextView 
          android:layout_width="0dp" 
          android:layout_height="wrap_content" 
          android:text="Session Time" 
          android:textSize="20dp" 
          android:layout_weight="1" 
          android:background="@drawable/cell_shape" 
          /> 

         <TextView 
          android:layout_width="0dp" 
          android:layout_height="wrap_content" 
          android:text="Average Speed" 
          android:layout_gravity="center" 
          android:textSize="20dp" 
          android:layout_weight="1" 
          android:background="@drawable/cell_shape" 
          /> 

        </LinearLayout> 
       </TableRow> 
      </TableLayout> 

    </ScrollView> 


    <Button 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:id="@+id/addButton" 
     android:text="Scan item barcode" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentStart="true" /> 

</RelativeLayout> 

回答

0

坐落在LinearLayout中android:layout_weight="2.5"是的LinearLayout兒童的佈局重量的總和。此佈局應該左右對齊後。

<LinearLayout android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" 
    android:layout_weight="2.5" 
    android:id="@+id/linear_layout_two_table_layout"> 
+0

我會試試這個肯定的,現在我已經進入另一個概率,我最終在這個佈局中添加了一個導航菜單和一個底部導航欄,現在它並沒有向我顯示錶格。任何想法? –

+0

對不起,沒有源代碼,很難分辨出問題所在。我試圖根據這個教程實現底部導航欄https://medium.com/@hitherejoe/exploring-the-android-design-support-library-bottom-navigation-drawer-548de699e8e0#.4bvk8trr4對我來說,它的工作結果如下:https://postimg.org/image/n1gjcalm7/沒有添加導航菜單,但它不應該破壞表格。如果你仍然有問題,我認爲你應該發佈一個新的問題。 – Sabriael

+0

讓我們聊聊吧,我是新來的StackOverflow,所以請先給我發消息,如果可以的話 –