Onclick не работает на CardView

У меня есть слушатель onclick на просмотре карты. Слушатель работает, только когда я нажимаю на область за пределами содержимого (TextViews/ImageViews). У меня также есть линейная раскладка внутри карты. Я хотел, чтобы это работало, когда я нажимаю в любом месте на CardView. Есть ли лучший способ реализовать это по сравнению с тем, как я это делаю?

Вот мой CardView в XML

<android.support.v7.widget.CardView
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_gravity="center"
    android:padding="10dp"
    android:layout_margin="3dp"
    android:elevation="3dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/post_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/guilt_theme"
            android:padding="4dp"
            android:text="GUILT"
            android:textColor="@color/textColor"
            android:textSize="12sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/post_text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textAllCaps="false"
            android:layout_marginTop="10dp"
            android:focusableInTouchMode="false"
            android:clickable="true"
            android:text="text content"
            android:textColor="@color/secondaryText"
            android:textSize="16sp" />

        <TextView
            android:id="@+id/date_user"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="3dp"
            android:inputType="number"
            android:text="on 16/5/2018 by user"
            android:textColor="@color/weaker_text"
            android:textSize="14sp" />

        <LinearLayout
            android:id="@+id/LinearLayout"
            android:layout_width="match_parent"
            android:orientation="horizontal"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/view_image"
                android:layout_width="20dp"
                android:layout_height="20dp"
                android:clickable="true"
                android:focusable="true"
                android:background="?attr/selectableItemBackground"
                android:layout_marginTop="4dp"
                android:src="@drawable/ic_action_name" />

            <TextView
                android:id="@+id/total_views"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="2"
                android:inputType="number"
                android:layout_marginTop="3dp"
                android:textColor="@color/secondaryText"
                android:textSize="14sp"
                android:textStyle="bold" />
            <ImageView
                android:layout_marginLeft="20dp"
                android:id="@+id/like_image"
                android:layout_width="20dp"
                android:layout_marginTop="4dp"
                android:clickable="true"
                android:focusable="true"
                android:background="?attr/selectableItemBackground"
                android:src="@drawable/thumbs_up"
                android:layout_height="20dp" />

            <TextView
                android:id="@+id/total_upvotes"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="2"
                android:layout_marginTop="3dp"
                android:inputType="number"
                android:textColor="@color/secondaryText"
                android:textSize="14sp"
                android:textStyle="bold" />

            <ImageView
                android:id="@+id/dislike_image"
                android:layout_marginLeft="20dp"
                android:layout_width="20dp"
                android:layout_marginTop="4dp"
                android:src="@drawable/thumb_down"
                android:clickable="true"
                android:focusable="true"
                android:background="?attr/selectableItemBackground"
                android:layout_height="20dp" />

            <TextView
                android:id="@+id/total_downvotes"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="2"
                android:layout_marginTop="3dp"
                android:inputType="number"
                android:textColor="@color/secondaryText"
                android:textSize="14sp"
                android:textStyle="bold" />



        </LinearLayout>
    </LinearLayout>
 </android.support.v7.widget.CardView>

Затем я добавил слушателя в свою активность.

 viewHolder.cardView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               Intent intent = new Intent(getActivity(), PostReader.class);
               TextView posttext = view.findViewById(R.id.post_text);
               String post = posttext.getText().toString();
                intent.putExtra("postinfo", post);
                startActivity(intent);
            }
        });

3 ответа

Я думаю, что вы получаете такое поведение, потому что некоторые из ваших TextViews и ImageViews имеют атрибут android:clickable="true"

Пытаться:

Удалите атрибуты и добавьте его только в CardView. Возможно, вам также придется удалить атрибут android:focusable="true" из ImageViews, так что просмотр карты может прослушивать события щелчка.

В моем случае проблема заключалась в том, чтобы настроить внутренний вид для захвата кликов, установивandroid:clickable="true"&android:focusable="true"к внутреннему виду. Это предотвращает захват кликов.

Удаление обоих позволилоCardViewловить клики.

Сегодня я столкнулся с проблемой: представление карты с созданным мной представлением не выполняло функцию щелчка.
Я пробовал много вещей, и ничего не получалось. Мое решение состояло только в том, чтобы взять содержимое представления карты и вставить его в макет ограничения, требующий всей области просмотра. После этого щелчок стал работать нормально.
Пример

      <?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:backgroundTintMode="add"
    android:elevation="5dp"
    app:cardBackgroundColor="@android:color/transparent"
    app:cardCornerRadius="5dp"
    app:strokeColor="@color/yellow"
    app:strokeWidth="2dp">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <com.google.android.material.textview.MaterialTextView
            android:id="@+id/textMove"
            style="@style/TextAppearance.MaterialComponents.Subtitle2"
            android:layout_width="120dp"
            android:layout_height="50dp"
            android:gravity="center"
            android:padding="2dp"
            android:text="@string/move"
            android:textAlignment="center"
            android:textColor="@color/black"
            android:textSize="14sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    </androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.card.MaterialCardView>
Другие вопросы по тегам