В этом случае вы должны установить
android:ellipsize="start"
android:singleLine="true"
текстовое представление должно выглядеть так:
<TextView
android:id="@+id/textView"
android:ellipsize="start"
android:singleLine="true"
android:text="very big text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />