I have TextView defined for example as follows:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end"
android:text="This is very long text"
android:textSize="34pt"/>
Using API level 14/15 this leads to cut whole word "very", and I have actually text displayed "This is", but I need to cut this text like "This is ver".
Can some one ask me how to achieve such behavior?