我有一个像这样的项目xml的回收者视图
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
我需要使这个回收者视图选框和椭圆形像文本视图一样水平滚动像新闻的自动收报机 我为每个textview提出了
setselected(true)
来自适配器的和{{1}}并且无法正常工作
答案 0 :(得分:0)
在这里,在recyclerview中工作正常:https://blog.csdn.net/tiantaiaiqing/article/details/79200299
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:scrollHorizontally="true"
android:textSize="12dp" />
//在recyckerview textView.setSelected(true)
holder.titleTv.setSelected(true);
答案 1 :(得分:0)
您只需在RecyclerView适配器的 onBindViewHolder 中以编程方式进行操作即可:
byte