I have custom row for data representation but in first text when text is long it is in two lines but second line is half cut by height (like text view doesn't wrap content)
<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" />
How to make that has height enough to show all content ?