ListView의 Item으로 아래와 같은 layout으로 TextView 3개를 넣었습니다. 문자열이 한 줄일 때는 문제가 없는 데 2줄 이상이 되면 TextView의 높이가 줄어 드는 데, 이유가 뭘까요?


<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:orientation="horizontal"

    android:padding="5dp" 

    android:background="#CDC9A5"

    >

    <TextView

        android:layout_width="50dp"

        android:layout_height="70dp"

        android:paddingLeft="3dp"

        android:gravity="left|center_vertical"

        android:id="@+id/text_message_number"

        android:background="#FFFFFF" 

        android:textSize="16sp"

        />

<TextView 

        android:layout_width="140dp"

        android:layout_height="70dp"

        android:gravity="center_horizontal"

        android:layout_marginLeft="5dp"

        android:id="@+id/text_message_date"

        android:background="#FFFFFF"

        android:textSize="16sp"

   />

<TextView 

        android:layout_width="150dp"

        android:layout_height="70dp"

        android:paddingLeft="3dp"

        android:gravity="left|center_vertical"

        android:layout_marginLeft="5dp"

        android:id="@+id/text_message_content"

        android:background="#FFFFFF"

        android:singleLine="true"

        android:textSize="16sp"

   />

</LinearLayout>

layout-problem.png