最小SDK为21。当我点击回收器适配器中的cardview时,不会产生连锁反应,只会进入下一个屏幕。recyclerview位于片段内部。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:id="@+id/entire_card"
android:layout_width="match_parent"
android:layout_height="265dp"
android:layout_margin="8dp"
android:foreground="?android:attr/selectableItemBackground"
app:cardUseCompatPadding="true"
app:cardCornerRadius="2dp"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:paddingTop="120dp"
android:visibility="visible"/>
<ImageView
android:id="@+id/pet_image"
android:layout_width="match_parent"
android:layout_height="210dp"
android:layout_alignParentTop="true"
android:scaleType="centerCrop"
android:src="@drawable/placeholder"
android:visibility="gone"
/>
<TextView
android:id="@+id/pet_description"
android:layout_width="fill_parent"
android:layout_height="55dp"
android:layout_below="@+id/pet_image"
android:padding="10dp"
android:textColor="#FFFFFF"
android:visibility="gone"
android:textSize="20sp"
android:background="@color/primaryColour"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
适配器代码,其中我对每个项目进行了onClick。
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
public TextView petInfo;
public ImageView imgURL;
public ProgressBar progressBar;
private Context itemContext;
public ViewHolder(View v){
super(v);
imgURL = (ImageView) v.findViewById(R.id.pet_image);
petInfo = (TextView) v.findViewById(R.id.pet_description);
progressBar = (ProgressBar) v.findViewById(R.id.progressbar);
itemContext = v.getContext();
v.setOnClickListener(this);
}
@Override
public void onClick(View v){
Intent intent= new Intent(itemContext, DetailCardLayout.class);
Integer position = getAdapterPosition();
intent.putExtra("CARDVIEW_POSITION", position);
v.getContext().startActivity(intent);
}
}
尝试将图像包装在一个前台属性为:android:foreground=“?attr/selectableItemBackground”的框架布局中
例如。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:foreground="?attr/selectableItemBackground"
>
<ImageView
android:id="@+id/pet_image"
android:layout_width="match_parent"
android:layout_height="210dp"
android:layout_alignParentTop="true"
android:scaleType="centerCrop"
android:src="@drawable/placeholder"
android:visibility="gone"
/>
</FrameLayout>
尝试添加
android:clickable="true"
到你的卡片视图xml
您的卡片视图包含覆盖卡片视图表面的相对布局,因此请在相对布局中写入涟漪效应。
<android.support.v7.widget.CardView
android:id="@+id/cardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardPreventCornerOverlap="false"
app:cardElevation="2dp"
app:cardUseCompatPadding="false"
app:cardCornerRadius="2dp"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp"
android:layout_marginLeft="8dp"
>
<RelativeLayout
android:id="@+id/rl_bookmark"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:layout_width="match_parent"
android:layout_height="match_parent"> ...
我有一个,其中有一个作为行项布局的根元素。我设法使用下面的列表项布局对产生了连锁反应,如下所述。 类似的事情使用按钮样式在这里。 在视图保持器的适配器中,我有一个跨国itemView单击侦听器
我使用以下xml drawable作为我的recyclerview列表项的背景。 触摸选择器。xml 触摸选择器底部。xml 在列表项中,我正在使用触摸选择器。xml在我的列表_item _quote中如下所示。xml 我有另一个xml绘图touch_selector_dark.xml和touch_selector_base_dark.xml 在我的recycler视图适配器中,我根据索引在这两个
我正在尝试将涟漪效果添加到RecyclerView的项目中。我上网看了一下,但找不到我需要的东西。我想这应该是一个自定义效果。我尝试了rodroid:background属性到RecyclerView本身,并将其设置为“?android:selectableitembackground”,但它不起作用。: 这是我试图添加效果的RecyclerView:
我想在我的应用程序中使用水波涟漪效果,这种效果会在触摸区域反复出现,我已经访问了站点中可用的示例代码,但涟漪似乎被像素化了。 谁能帮我,实现活水涟漪效应?。我发现很难实施它。
我一直在为Lollipop(API 21)开发一个应用程序。 XML: