www.androidchunk.com

Hi Developer, Please visit www.androidchunk.com for Latest Updates. Thank you!
Showing posts with label Text (marquee) in Android. Show all posts
Showing posts with label Text (marquee) in Android. Show all posts

How To Create Marquee Text In Android?

Category: Android Codez  | Last Updates: 01/03/2017


Hey Android developer let's add marquee effect in our Android's TextView.

First of all let's see demo of marquee text in HTML .
Input:
<marquee>This is basic example of marquee in html</marquee>

Output:
This is basic example of marquee in html

Let's see how to create a scrolling Text (marquee) in Android using TextView?
# Add Properties In TextView
We need to just add below lines to your textview.
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="fill_parent"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"


Full XML Layout
This is a full xml code with marquee effect textview.
res/layout/activity_main.xml



OUTPUT: