節我的XML是:Android的問題:TextView的字幕不工作
<RelativeLayout
android:id="@+id/headerLayout"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/colorDeepGreen">
<TextView
android:id="@+id/tvModelMakeYear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_margin="@dimen/margin_one"
android:textColor="#fff"
android:textSize="16dp"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:lines="1"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"/>
</RelativeLayout>
我都內的onCreate添加tvModelMakeYear.setSelected(真)()。但仍然選框不起作用。
我正在使用Android Studio 2.3 ..
請幫我解決問題。
添加tvModelMakeYear.setSingleLine(真);在tvModelMakeYear.setSelected(true)之後,這應該起作用。它不會在代碼中顯示棄用。 –