gpt4 book ai didi

android - 如何将 OnClickListener 附加到通过 itemDecoration 添加的 RecyclerView 中的 stickyHeader

转载 作者:太空狗 更新时间:2023-10-29 14:10:12 25 4
gpt4 key购买 nike

我正在尝试在 RecyclerView 中实现 stickyHeaders。每个 Header 至少有两个 View (TextView 和 ImageView),我想分别听取每个 View 上的点击,以便我可以将它们带到不同的 Activity 中。

尝试过 recyclerview-stickyheaders 库:http://eowise.github.io/recyclerview-stickyheaders/

在使用这个库时,发现它会监听基于 OnItemTouchListener 的整个 header 。有没有办法听取对个别 View 的点击?

除此之外,我尝试直接在 BigramHeaderAdapter(库示例中的 Header Adapter)中添加 OnClickListeners,如下所述。

我想知道是否有办法实现这一点。请帮忙!

页眉布局(top_header.xml 示例):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:clickable="true"
android:paddingStart="@dimen/item_padding"
android:paddingEnd="@dimen/item_padding">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<TextView
android:id="@+id/title"
android:layout_width="40dp"
android:layout_height="30dp"
android:clickable="true"
android:gravity="left|center_vertical"
android:textAppearance="?android:textAppearanceMedium"
android:background="?android:colorBackground"/>

<View
android:layout_width="0.0dip"
android:layout_height="fill_parent"
android:layout_weight="1" />

<ImageView
android:id="@+id/image"
android:clickable="true"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/ic_launcher"/>
</LinearLayout>

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="?android:listDivider"
android:scaleType="fitXY"/>
</LinearLayout>

尝试 1:在 BigramHeaderAdapter(Header Adapter)中创建 ViewHolder 时实现 View.OnClickListener

public static class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
@Override
public void onClick(View v) {
mHeaderListener.onThread(v, getPosition());
}

public TextView title;
public ImageView image;

public ViewHolder(View itemView, HeaderViewHolderClicks listener) {
super(itemView);

title = (TextView) itemView.findViewById(R.id.title);

image = (ImageView) itemView.findViewById(R.id.image);


mHeaderListener = listener;
title.setOnClickListener(this);
itemView.setOnClickListener(this);
}

public interface HeaderViewHolderClicks {
public void onThread(View view, int position);
}

尝试 2:在头适配器 BigramHeaderAdapter 中的 onBindViewHolder 中添加了 OnClickListener。

@Override
public void onBindViewHolder(ViewHolder headerViewHolder, final int position) {
headerViewHolder.title.setText(items.get(position).subSequence(0, 2));
Log.v("binded", items.get(position).subSequence(0, 2).toString());
headerViewHolder.title.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.v("BigramHeaderAdapter : ", "Click on Thread " + position);
}
});

headerViewHolder.image.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.v("Image click", " Clicked on Image " + position);
}
});

headerViewHolder.itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.v("Image click", " Clicked on ItemView " + position);
}
});
}

最佳答案

已经很晚了,但我仍然设法通过更改 StickyRecyclerHeadersTouchListener 的 中的 SingleTapDetector 类来实现触摸监听器。

这是我正在使用的粘性页眉的布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="2dp">

<TextView
android:id="@+id/stickyheader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20px" />

<TextView
android:id="@+id/stickyseemore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:text="@string/seemore"
android:textColor="@color/textPrimary"
android:textSize="20px" />

这是检测触摸的代码

private class SingleTapDetector extends GestureDetector.SimpleOnGestureListener {
@Override
public boolean onSingleTapUp(MotionEvent e) {
int position = mDecor.findHeaderPositionUnder((int) e.getX(), (int) e.getY());
boolean touch=false;
if (position != -1) {
View headerView = mDecor.getHeaderView(mRecyclerView, position);
long headerId = getAdapter().getHeaderId(position);
if (headerView instanceof RelativeLayout) {
View nextChild = ((RelativeLayout)headerView).getChildAt(1);

if(nextChild.getX()<e.getX()){
touch=true;
}
}
mOnHeaderClickListener.onHeaderClick(headerView, position, headerId,touch);
mRecyclerView.playSoundEffect(SoundEffectConstants.CLICK);
headerView.onTouchEvent(e);
return true;
}
return false;
}

@Override
public boolean onDoubleTap(MotionEvent e) {
return true;
}}

这里我正在检查 headerView 类型。如果它的相对布局,那么我将在其中获取子元素。一旦我得到子元素,然后使用触摸的位置和我的元素的默认位置,我确定它是否在靠近该元素的任何地方被触摸。

关于android - 如何将 OnClickListener 附加到通过 itemDecoration 添加的 RecyclerView 中的 stickyHeader,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29618155/

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