我正在尝试在RecyclerView中实现stickyHeaders。每个标题将至少有两个视图(TextView和ImageView),我想分别听取每个视图的点击,以便我可以将它们带到不同的活动。
尝试了recyclerview-stickyheaders库:http://eowise.github.io/recyclerview-stickyheaders/
在玩这个库时,想到这会侦听基于OnItemTouchListener的整个头。有没有办法听取个别观点的点击次数?
除此之外,我尝试直接在BigramHeaderAdapter(库的示例中的Header Adapter)中添加OnClickListener,如下所述。
我想知道是否有办法实现这一目标。请帮助!
标题布局(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(标头适配器)中创建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);
}
});
}
答案 0 :(得分:1)
它很晚但我仍然通过更改SingleTapDetector
内的StickyRecyclerHeadersTouchListener's
类来设法实现触控侦听器。
这是我正在使用的粘贴标题的布局
<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类型。如果它的相对布局,那么我在其中获取子元素。一旦我得到了儿童元素,那么使用触摸和放大器的位置。我的元素的默认位置,我正在确定它是否被触及更靠近该元素的位置。