Android, Jak ograniczyć szerokość TextView (i dodać trzy kropki na końcu tekstu)?

mamTextView że chcę ograniczyć jego postacie. Właściwie mogę to zrobić, ale szukam sposobu dodania trzech kropek (...) na końcu łańcucha. Ten pokazuje, że tekst jest kontynuowany. To jest mój XML, ale nie ma kropek, chociaż ogranicza to mój tekst.

<TextView 
        android:id                      = "@+id/tvFixture"
        android:layout_width            = "wrap_content"
        android:layout_height           = "wrap_content"
        android:layout_toLeftOf         = "@id/ivFixture_Guest"
        android:text                    = "@string/test_06"
        android:lines                   = "1"
        android:ems                     = "3"
        android:gravity                 = "right"
        style                           = "@style/simpletopic.black" 
        android:ellipsize="end"/>

questionAnswers(18)

yourAnswerToTheQuestion