This library provides a horizontal scrolling ticker view, like the one used in MoneyControl Tablet (https://play.google.com/store/apps/details?id=com.moneycontrol, which shows stock price in scrolling view at the bottom of screen) and Phone application.
The problem can be easily fixed by adding 1 more empty TextView inside the TickerView, but it's not an ideal solution since we are adding 1 more useless TextView there. I already tried with View but not working, must TextView.
The
TextView
insideTickerView
will directly jump to the right when it's the only 1TextView
there if the text is not long enough.Please see this video for a better explanation of what I mean.
https://youtu.be/47cZEa98LJY
The
TickerView
is at the bottom.The problem can be easily fixed by adding 1 more empty
TextView
inside theTickerView
, but it's not an ideal solution since we are adding 1 more uselessTextView
there. I already tried withView
but not working, mustTextView
.