gpt4 book ai didi

Android onTouchListener 不工作,只在填充区域工作

转载 作者:行者123 更新时间:2023-11-29 20:26:21 25 4
gpt4 key购买 nike

我肯定做错了什么。我有一个 ReclyclerView,每个单元格都有一个 XML home_cells.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingRight="12dp"
android:paddingLeft="12dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:clickable="true">

<android.support.v7.widget.CardView
android:id="@+id/home_cv"
android:clickable="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<RelativeLayout
......
android:paddingTop="16dp">

<LinearLayout
....
android:orientation="horizontal">


<ImageView
...
android:src="@drawable/abc_ratingbar_full_material" />

<LinearLayout
......
android:orientation="vertical">

<TextView
.....
android:textStyle="bold" />

<TextView
....
android:textColor="@color/secondaryTextColor" />

</LinearLayout>

<ImageView
....
android:src="@mipmap/ic_chevron_right_black_24dp" />
</LinearLayout>
</RelativeLayout>
</android.support.v7.widget.CardView>
<!--<lay-->
</LinearLayout>

我有一个适配器……一切正常……完全没问题。

但是,当我尝试实现 onClickLister 以完成单元格 View mView 时,它不起作用。如果我触摸角落(我有填充物的地方),它就可以工作。

我不知道发生了什么。如果我将监听器设置为单元格中的每个元素,它会起作用……但不是整个单元格。

下面是我的viewHolder

class MyViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
CardView cv;
ImageView icon;
TextView heading;
TextView subheading;
View mView;


public MyViewHolder(View itemView) {

super(itemView);


Log.d(TAG, "setting images and items");
mView=itemView;
cv = (CardView)itemView.findViewById(R.id.home_cv);
icon =(ImageView) itemView.findViewById(R.id.home_rv_icon);
heading =(TextView) itemView.findViewById(R.id.heading);
subheading =(TextView) itemView.findViewById(R.id.subhead);
icon.setOnClickListener(this); // Working
mView.setOnClickListener(this); // NOT working
mView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View arg0, MotionEvent arg1) {

// NOT Working
return true;
}
});
}

@Override
public void onClick(View view) {
//
Log.d(TAG,"on click");
if(clickListener!=null){
Log.d(TAG,"listner notnull");
clickListener.itemClick(view,getAdapterPosition());
}

}


}


public interface RVClickListener{
//OnClick will work, but for better coding standard i made this listener to call the onclick from the fragment it self..
public void itemClick(View view, int position );


}

最佳答案

经过几个小时的努力,终于修好了。问题就在这里。

因为我的布局有 subview (布局),onclicklistener 被它们捕获。

所以通过一个简单的解决方案解决了它。我关闭了所有 subview 的可点击并将点击监听器应用于父 View 。

对所有 subview :

android:clickable="false"

关于Android onTouchListener 不工作,只在填充区域工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32464315/

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