我如何检测是否选择了Card或RecyclerView的项目?

时间:2019-09-15 10:11:29

标签: android android-recyclerview android-cardview cardview long-press

我是Android的新手,我正在从事大学项目(一个做笔记的应用程序)的工作。我可以添加和删除便笺,但是我想实现一种经典的删除项目的方式:长按该项目,然后使用对话框或其他方式将其删除。

这就是我所拥有的:Main Activity

我试图在卡片/便笺上单击几秒钟(它们处于嵌套在协调器布局中的回收视图中),并且看到显示了背景视觉效果,所以我认为已经实现了某些功能。

让我知道您是否需要XML布局实现或其他答案。谢谢! :)

编辑 要求的代码

CardView cardView = findViewById(R.id.cardId);
    cardView.setOnLongClickListener(new View.OnLongClickListener() {
        @Override
        public boolean onLongClick(View view) {
            Toast.makeText(MainActivity.this, "long click!", Toast.LENGTH_SHORT).show();
            return true;
        }
    });

卡片视图的XML声明

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/touch_layout"
    android:background="?attr/selectableItemBackground">

    <androidx.cardview.widget.CardView
        android:id="@+id/cardId"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/cardStyle"
        android:elevation="4dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginBottom="4dp"
        android:layout_marginTop="4dp">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="8dp">

            <TextView
                android:id="@+id/title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_alignParentStart="true"
                tools:text="title"
                android:textStyle="bold"
                android:textSize="20sp"
                android:layout_toStartOf="@id/showText"/>

            <androidx.appcompat.widget.AppCompatImageButton
                android:id="@+id/showText"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_alignParentEnd="true"
                android:src="@drawable/ic_leftarrow" />

            <TextView
                android:id="@+id/date"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/text"
                android:layout_alignParentEnd="true"
                android:textSize="12sp"
                android:layout_marginTop="4dp"
                tools:text="@string/date" />

            <TextView
                android:id="@+id/text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentStart="true"
                android:layout_marginTop="10dp"
                android:layout_below="@+id/title"
                tools:text="message..." />
        </RelativeLayout>
    </androidx.cardview.widget.CardView>
</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

您可以在recylerview上轻松使用长按监听器

 itemView.setOnLongClickListener(new View.OnLongClickListener() {
                @Override
                public boolean onLongClick(View view) {

                   Log.v("LongClick: "+"LongClick");
                    return true;// returning true instead of false, works for me
                }
            });

答案 1 :(得分:0)

您在后台看到的是Android应用于某些ItemView的本机效果。要注册点击,请按照以下步骤操作:

  1. 在XML中创建布局并为其分配ID。

    <TextView
        android:id="@+id/timestamp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="2dp"
        android:layout_marginBottom="2dp"
        android:layout_marginRight="16dp"
        android:layout_alignParentEnd="true"/>
    
  2. 使用分配的ID声明和定义视图(在这种情况下为TextView):

    TextView messageText;
    messageText = itemView.findViewById(R.id.timestamp);
    
  3. 附加监听器以注册点击:

    messageText.setOnLongClickListener(new View.OnClickListener() {
        @Override
        public void onLongClick(View view){
        // Do what you want here.
        }
    });