I implemented textview which is automaticly scrolling by theese lines of code:
android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:marqueeRepeatLimit="marquee_forever" android:scrollHorizontally="true" this work perfectly. but there is focusable attribute important because if I remove both of focusable attributes so textview doesn't scroll. But my problem is that textview is scrolling only if it has a focus. And I would like to implement two textviews at one screen. There is a problem when I set focusable attribute to both of texviews. focus get only the first textview and that's the reason why is scrolling only first textview. Please help me how to achieve that both of the textviews will be scrolling at same time. Thank you very much for your help. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

