0

我有一个包含 6 行 tableLayout 的日历,每行包含 6 个 CelluleMensuelle 类型的单元格(它扩展了 LinearLayout)。

一开始,所有行都具有相同的高度,但是当我将 textviews 添加到单元格时,它会增加其行的高度,我该如何防止这种情况发生?我希望行保持它们的初始高度

这是我的xml文件 calendrier_calendriermensuel.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
       android:layout_width="0dp"
       android:layout_height="wrap_content"
       android:layout_weight="3"                           
       android:text="Lundi"
       android:background="@drawable/ligne_bordure"
    />
    <TextView
       android:layout_width="0dp"
       android:layout_height="wrap_content"
       android:layout_weight="3"                           
       android:text="Mardi"
       android:background="@drawable/ligne_bordure"
    />
    <TextView
       android:layout_width="0dp"
       android:layout_height="wrap_content"
       android:layout_weight="3"                           
       android:text="Mercredi"
       android:background="@drawable/ligne_bordure"
    />
    <TextView
       android:layout_width="0dp"
       android:layout_height="wrap_content"
       android:layout_weight="3"                           
       android:text="Jeudi"
       android:background="@drawable/ligne_bordure"
    />
    <TextView
       android:layout_width="0dp"
       android:layout_height="wrap_content"
       android:layout_weight="3"                           
       android:text="Vendredi"
       android:background="@drawable/ligne_bordure"
     />
</LinearLayout>

<TableLayout
    android:id="@+id/layout_calendriermensuel"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="#FFFFFF">

    <TableRow
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />                                  
    </TableRow>
    <TableRow
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">

        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />
        <com.thinline.dm21.utils.CelluleMensuelle
          android:layout_width="0dp"
          android:layout_height="match_parent"
          android:layout_weight="1"
          android:background="@drawable/ligne_bordure"
        />                                  
    </TableRow>

    <!-- 4 others tablerows --!>
</TableLayout>

</LinearLayout>
4

1 回答 1

0

您需要设置 TableLayout 的 android:weightSum 属性,因此如果您有 6 行并且希望它们保持相同的高度并且每一行的属性权重设置为 1,则 TableLayout 的 android:weightSum 属性必须是 6。

于 2013-07-17T16:20:11.390 回答