我有一张Recyclerview连续两张牌,这是布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
android:layout_width="match_parent"
android:clickable="true"
android:layout_marginTop="5dp"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:id="@+id/card"
android:layout_width="match_parent"
android:layout_marginLeft="1dp"
android:layout_marginRight="1dp"
android:layout_height="wrap_content"
android:clickable="true"
app:cardMaxElevation="10dp"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardCornerRadius="4dp"
app:cardBackgroundColor="@color/md_white_1000">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:maxLines="4"
android:textColor="@color/md_teal_900"
android:textSize="15dp"
android:textStyle="bold"
android:layout_weight="1"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="200dp"
android:id="@+id/thumbnail"
android:layout_marginTop="15dp"
android:src="@mipmap/ic_default_thumbnail"
android:adjustViewBounds="true"
android:layout_weight="10"/>
</LinearLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:id="@+id/download_card"
card_view:cardElevation = "10dp"
android:layout_marginLeft="1dp"
android:layout_marginRight="1dp"
android:clickable="true"
android:layout_marginTop="3dp"
android:layout_marginBottom="5dp"
android:foreground="?android:attr/selectableItemBackground"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp"
app:cardBackgroundColor="@color/md_white_1000">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:src="@mipmap/ic_download"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
当我按任意一张卡片时,会有触摸反馈,但没有响应。
以下是我在处理适配器中的点击的方法。
public XViewHolder(View itemView, RecyclerView.Adapter adapter) {
super(itemView);
ButterKnife.bind(this, itemView);
this.adapter = adapter;
itemView.setOnClickListener(this);
}
@Override
public void onClick(View v) {
int position = this.getAdapterPosition();
if(v.getId() == R.id.card) {
mainView.startVideoFragment(JsonList.get(position).getURL());
}else{
DownloadStream downloadStream = new DownloadStream(
JsonList.get(position).getURL(), JsonList.get(position).getTitle());
}
}
甚至没有调用onClick方法。
答案 0 :(得分:1)
将代码更改为..
public XViewHolder(View itemView, RecyclerView.Adapter adapter) {
super(itemView);
ButterKnife.bind(this, itemView);
this.adapter = adapter;
itemView.findViewById(R.id.card).setOnClickListener(this);
itemView.findViewById(R.id.download_card).setOnClickListener(this);
}
并删除该行..
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
android:layout_width="match_parent"
**android:clickable="true"** // remove it
android:layout_marginTop="5dp"
android:orientation="vertical">
答案 1 :(得分:0)
甚至没有调用onClick方法。
那不是真的。调用该方法但您没有为ClickListener
注册R.id.card
,因此第一个警卫始终为假。在您的else
分支中,您正在实例化DownloadStream
,但您没有对此进行任何操作。如果要显式处理不同视图的单击事件,则必须为特定子项显式注册OnClickListener
。 E.g。
itemView.findViewById(R.id.card).setOnClickListener(this);
点击onClick
和
R.id.card
itemView.findViewById(R.id.download_card).setOnClickListener(this);
如果您要处理R.id.download_card