我在我的應用程序中有一個TextView。這是一個字幕文本。我想讓這個字幕文字的鏈接是可點擊的。我怎樣才能做到這一點?Android Marquee TextView可點擊鏈接
感謝您的幫助。
編輯:我的代碼:
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
我已經試過了。如果我長時間點擊textview然後設置輸入類型,我可以點擊鏈接。 –