Scrolling text in the Crouton library
The crouton library can be found on Github And my question is whether it is possible to make the text displayed in Crowton's render horizontally. In a TextView, this can be done like this:
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
But is this also possible in Crouton? I appreciate every help / answer!
+3
ChrisMCMine
source
to share
1 answer
You can provide your own view to Crouton via Crouton.show(Activity, View)
and its equivalent methods Crouton.make(...)
.
A custom view can also be a view that can stand out forever.
+4
keyboardsurfer
source
to share