Reputation: 7641
I am new to android. I have developed simple app for android. But the things is my app name is having 3 words. So I want to apply marquee property for my app name. I mean, when I install my app on device so that it appears in app category/menu. Currently it is static, so it should be having marquee property, so my app name gets move continuously from right to left like textview in android. So can anyone plz tell me how I can achieve this thing in android?
Upvotes: 0
Views: 215
Reputation: 2293
I'm pretty sure this would require a change to the Android code itself. However, if you want to do this in your app, you could try adding android:ellipsize="marquee"
to your textviews.
Upvotes: 1