データ表現用のカスタム行がありますが、テキストが長い場合の最初のテキストでは2行ですが、2行目は高さで半分にカットされています(テキストビューがコンテンツをラップしないように)
<TextView
android:id="@+id/txtDate"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:singleLine="false"
android:maxLines="3"
style="@style/row"
android:layout_weight="1"/>
<TextView
android:id="@+id/txtTime"
android:layout_width="0dip"
android:layout_height="wrap_content"
style="@style/row"
android:layout_weight="1"/>
<Button
android:id="@+id/imbDetail"
android:layout_width="36dip"
android:layout_height="36dip"
android:background="@drawable/selector_detail_arrow" />
すべてのコンテンツを表示するのに十分な高さにするにはどうすればよいですか?