0
我的RecycleView裏面我試圖挑選不符合一行的所有文本,但是由於RecycleView內部沒有焦點,我只能設置一個Textview來工作,有什麼辦法可以做它?RecycleView裏面的TextView Marquee
<TextView
android:layout_toLeftOf="@+id/imageLabel"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:freezesText="true"
android:maxLines="1"
android:id="@+id/bankName"
android:paddingRight="5dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:textSize="28sp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
我知道如果我添加
android:singleLine="true"
它將使recyclerview裏面所有的Textviews字幕,但由於其depercated我想避免使用它