I would like to ask you if textview has any option that when I have too long text for example text has 30 dp and textview has 15 dp I want to show text which is moving from left corner to right and return to start and again. Something like animation. I want to user see all text. Something like automatic scroll.
Edit: How I can do that in code, not xml?
You should use
android:ellipsize="marquee".EDIT: you can use
textView.setEllipsize(TextUtils.TruncateAt.MARQUEE);