Ellipsize not working for textView inside custom listView

Posted by aspartame on Stack Overflow See other posts from Stack Overflow or by aspartame
Published on 2009-09-14T22:49:57Z Indexed on 2010/04/02 19:03 UTC
Read the original article Hit count: 565

Filed under:
|
|

Hi,

I have a listView with custom objects defined by the xml-layout below. I want the textView with id "info" to be ellipsized on a single line, and I've tried using the attributes

android:singleLine="true"
android:ellipsize="end"

without success.

If I set the layout_width to a fixed width like e.g.

android:layout_width="100px"

the text is truncated fine. But for portability reasons this is not an acceptable solution.

Can you spot the problem?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="5px"
>
<TextView  
android:id="@+id/destination"
android:layout_width="fill_parent" 
android:layout_height="wrap_content"
android:textSize="22dp"
android:paddingLeft="5px"
/>

<TextView  
android:id="@+id/date"
android:layout_width="fill_parent" 
android:layout_height="wrap_content"
android:textSize="15dp"
android:paddingLeft="5px"
/>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/info_table"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="5px"
android:paddingTop="10px" 
>
    <TableRow>
        <TextView
        	android:id="@+id/driver_label"
        	android:gravity="right"
        	android:paddingRight="5px"
        	android:text="@string/driver_label" />
        <TextView
        	android:id="@+id/driver" />
    </TableRow>
    <TableRow>
        <TextView
        	android:id="@+id/passenger_label"
        	android:gravity="right"
        	android:paddingRight="5px"
        	android:text="@string/passenger_label" />
        <TextView
        	android:id="@+id/passengers" />
    </TableRow>
    <TableRow>
        <TextView
        	android:id="@+id/info_label"
        	android:gravity="right"
        	android:paddingRight="5px" 
        	android:text="@string/info_label"/>
        <TextView
        	android:id="@+id/info"
        	android:layout_width="fill_parent"
        	android:singleLine="true"
        	android:ellipsize="end" />
    </TableRow>
</TableLayout>

© Stack Overflow or respective owner

Related posts about android

Related posts about Xml