2010-06-02 27 views

Répondre

4

Vous pouvez utiliser Android: ellipsize = « chapiteau » dans les attributs TextView ou en implémenter votre propre animation

+3

Une note de côté: L'animation marquee par défaut ne démarre que si le TextView sélectionné. –

1

Il est petit, par exemple pour une vue de texte automatique de défilement simplement en utilisant XML, pas besoin de code Java. J'espère que vous l'aimerez! Essayez-le vous-même, il est très facile à réaliser

Essayez ceci:

<TextView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:singleLine="true" 
android:scrollHorizontally="true" 
android:ellipsize="marquee" 
android:marqueeRepeatLimit ="marquee_forever" 
android:focusable="true" 
android:focusableInTouchMode="true" 
android:text="This is small example for auto scroll text view simply using XML, no need to code Java. Hope you like it! Try it on your own, it is very easy to perform" /> 

Click here to see the Output

texte ici défilera automatiquement et vous obtiendrez défilement infini. S'amuser!

Click here to see detailed tutorial