gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 02:18:40 25 4
gpt4 key购买 nike

我是 Android 的新手,我正在研究一个大学项目,这是一个做笔记的应用程序。我可以添加和删除笔记,但我想实现一种删除项目的经典方法:长按它并使用对话框或其他方式删除它。

这是我拥有的:Main Activity

我尝试在卡片/笔记上单击几秒钟(它们位于嵌套在协调器布局中的回收 View 中),我看到显示了背景视觉效果,所以我认为已经实现了一些东西。

如果您需要 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;
}
});

cardview的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>

最佳答案

你可以在 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
}
});

关于android - 我如何检测是否选择了 Card 或 RecyclerView 的项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57943100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com