TextView字幕无需android:layout_width =“ match_parent”

时间:2019-06-30 13:26:57

标签: android textview marquee

我正在制作一个看起来像这样的UI

enter image description here

我的目标是在突出显示的文本视图中添加选取框滚动效果,两个文本视图的父容器都是Constraint布局,因此,我使用android:layout_width="0dp",以便我的视图扩展到其约束50-50占总空间。

我做了一些研究,发现我需要android:layout_width="match_parent"才能取得成功。

我当前的字幕代码:

<TextView
                android:ellipsize="marquee"
                android:marqueeRepeatLimit="marquee_forever"
                android:focusable="true"
                android:singleLine="true"
                android:focusableInTouchMode="true"
                android:freezesText="true"
                android:scrollHorizontally="true"
                android:gravity="start"
                android:id="@+id/row_load_list_toAddress"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginStart="8dp"
                android:text="End Location"
                android:textColor="@color/black"
                android:textSize="20sp"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toEndOf="@+id/imageView5"
                app:layout_constraintTop_toBottomOf="@+id/textView13" />

任何人都请问一下我在这里可能做错了什么以及如何解决?

1 个答案:

答案 0 :(得分:1)

要使选取框正常工作,必须在与该布局相关的“活动”中将setSelected属性设置为true

TextView txt = findViewById(R.id.row_load_list_toAddress);
txt.setSelected(true);

希望这可以解决您的问题。