I need to set ellipsize=end
to TextView which is allowed to expand on two lines.
I've tried this code:
<TextView
android:id="@+id/carouselTitle"
android:layout_width="228dp"
android:layout_height="40dp"
android:layout_marginBottom="0dp"
android:layout_marginLeft="90dp"
android:layout_marginRight="0dp"
android:layout_marginTop="4.5dp"
android:ellipsize="end"
android:maxLines="2"
android:textSize="24sp"
android:textStyle="bold" >
</TextView>
Please reply with an example.