gpt4 book ai didi

android - 对 recyclerview 触摸事件没有链式 react

转载 作者:行者123 更新时间:2023-11-29 17:34:52 25 4
gpt4 key购买 nike

我已经使用 RecycleView 实现了抽屉导航,但是当我点击项目时,没有显示涟漪效果。我的设备运行的是 API 22。

fragment_navigation.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">


<RelativeLayout
android:id="@+id/nav_header_container"
android:layout_width="match_parent"
android:layout_height="140dp"
android:layout_alignParentTop="true"
android:background="@color/colorPrimary">

<ImageView
android:layout_width="70dp"
android:layout_height="70dp"
android:src="@drawable/ic_profile"
android:scaleType="fitCenter"
android:layout_centerInParent="true" />

</RelativeLayout>


<android.support.v7.widget.RecyclerView
android:id="@+id/drawerList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/nav_header_container"
android:layout_marginTop="15dp" />


</RelativeLayout>

我的行是:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true">
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:src="@android:drawable/ic_input_get" android:id="@+id/imageView"/>
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="30dp"
android:paddingTop="10dp"
android:text="asa"
android:paddingBottom="10dp"
android:textSize="15dp"
android:textStyle="bold"
android:layout_alignParentTop="true" android:layout_toRightOf="@+id/imageView"
android:layout_toEndOf="@+id/imageView"/>

</RelativeLayout>

问题是什么,我该如何解决?

最佳答案

试试这个作为你的布局

  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
android:focusable="true"
android:clickable="true">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:src="@android:drawable/ic_input_get"
android:id="@+id/imageView"/>

<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="30dp"
android:paddingTop="10dp"
android:text="asa"
android:paddingBottom="10dp"
android:textSize="15dp"
android:textStyle="bold"
android:layout_toRightOf="@+id/imageView"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/imageView"/>

</RelativeLayout>

关于android - 对 recyclerview 触摸事件没有链式 react ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30963830/

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