在布局中,TextView中,添加 android:textIsSelectable="true"
<TextView
android:id="@+id/tv_list_item_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:layout_marginStart="12dp"
android:layout_marginEnd="12dp"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
android:textColor="@color/gray_9d"
android:text="姓名:JJJ"
android:textSize="13dp"/>
如果是在RecyclerView中的TextView, RecyclerView使用了android:descendantFocusability="afterDescendants"
RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:descendantFocusability="afterDescendants">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:scrollbars="vertical"
android:clipToPadding="false"/>
</RelativeLayout>
注意,修改如下:
使用 afterDescendants,不能设置android:descendantFocusability=”blocksDescendants”
beforeDescendants:viewgroup会优先其子类控件而获取到焦点
afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点。
1220

被折叠的 条评论
为什么被折叠?



