我找到了解决方案。将您的文本视图放在另一个容器中。像这样
在 Oncreate 方法中
newsFeedTextView.setSelected(true);
它将毫无疑问地工作。享受
<LinearLayout
android:id="@+id/newsLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" >
<TextView
android:id="@+id/newsFeedTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/splash_bg"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:freezesText="true"
android:marqueeRepeatLimit="marquee_forever"
android:padding="10dp"
android:scrollHorizontally="true"
android:singleLine="true"
android:text="Manchester United boss David Moyes is from the Champions League."
android:textColor="@android:color/white"
android:textStyle="bold" />
</LinearLayout>