I want to have ...
at the beginning of a single-line text view..
<TextView
android:id="@+id/dialer_display_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textSize="@dimen/dialer_display_number_size"
android:textColor="@color/white"
android:includeFontPadding="false"
android:maxLength="31"
android:singleLine="true"
android:ellipsize="start"
android:background="@null"/>
However, it doesn't work and shows warning message
W/StaticLayout﹕ Start Ellipsis only supported with one line
I notice that if I remove singleLine="true", the warning will not appear.. but in any way, long text is not shortened with ...
at the beginning