I have a TextView in my app. It is a marquee text. I want to make this marquee text's links are clickable. How can i do this?
Thanks for help.
Edit: My codes:
Xml:
android:id="@+id/marquee_text"
android:autoLink="web"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:text=" "
Java:
marqueeText.setLinksClickable(true);
marqueeText.setText(marquee);//marquee is a string