Android textIsSelectable 停止 TextView onClick 正常工作

Android textIsSelectable stops TextView onClick working correctly

在我当前的 Android 应用程序中,我有一个 MaterialCardView 包装了我希望可复制的 TextView,例如我用

android:textIsSelectable="true"

但是,我还需要知道 MaterialCardView 何时被点击,因为它位于 RecyclerView 项目布局中。

我对 MaterialCardViewonClickListener 仅在我从子 TextView.

中删除 android:textIsSelectable="true" 属性时才会触发

这是完整的 RecyclerView 项目布局

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/item_bibtext_cardview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:focusable="true"
    card_view:cardBackgroundColor="?attr/colorSurface"
    card_view:cardCornerRadius="10dp"
    card_view:cardElevation="5dp"
    card_view:cardPreventCornerOverlap="false"
    card_view:cardUseCompatPadding="true"
    card_view:contentPadding="10dp">

    <TextView
        android:id="@+id/bibtex"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:textIsSelectable="true"
        android:background="?android:attr/selectableItemBackground"
        android:textColor="?android:attr/textColorPrimary" />

</com.google.android.material.card.MaterialCardView>

我怎样才能既检测到对父项 MaterialCardView 的点击又让子项 TextView 可选择?

在您的情况下(使用 textIsSelectable="true"),TextView 仍会触发 OnClick 事件。因此,您只需将 OnClickListener 添加到 TextView 并将其添加到现有 CardView 点击行为的 link。

这可以涵盖你的情况吗?