I am creating a simple layout with TableLayout and TableRow that contain two TextViews. This is part of the code.
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0">
<TableRow android:id="@+id/myTableRow">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Short description"/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Large description"/>
</TableRow>
The problem is that if there is long text in TextView1, then the full text is not displayed. How to show full text in TextView1?
source
share