• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps marquee Problem

Whew, as Johnny 5 might say, "Need more input."

We need a little more information about your problem to help you (i.e. sample code, what exactly is going on, etc.)
 
<​
TextView android:layout_width="fill_parent"
android:layout_height="0dip" android:text="ICICI BANK PROVIDES INTERNET BANKING" android:ellipsize="marquee"

android:focusable​
="true"

android:singleLine​
="true"

android:layout_marginTop="200px" />

this is the code. in this marquee is not working . i want to create running text . please help me
 
Hey friend how about trying this...

<TextView
android:id="@+id/textview2"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#00FF00"
android:text="This Is The Ad Space" />
 
Back
Top Bottom