I have some problem with standard android ellipsize mechanism.
My textview xml layout is next:
<TextView
android:id="@+id/something"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/message_test_text"
android:lines="2"
android:ellipsize="end"
android:textColor="@drawable/dialogs_text_selector"
/>
Then in code I'm setting Helvetica typeface to this field. And then, in the end of second line I see broken symbol after dots:
Because it used in list, I see a list of squares.
Can I remove it without tons of code?
Thank you!