android RecyclerView嵌套RecyclerView,显示标题+图片_recyclerview嵌套recyclerview展示图片列表-程序员宅基地

技术标签: android  

        最近在做功能,看到这种标题下面还能滑动的图片,这种实现效果是一个RecyclerView嵌套一个RecyclerView,特此记录一下。预览图,外层是一个RecyclerView,里面又是一个RecyclerView。

上代码

布局文件

activity_main.xml 

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

item_recycler.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_margin="3dp">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="我是标题"
        android:textSize="20sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_item"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textView" />
</androidx.constraintlayout.widget.ConstraintLayout>

item_img.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="10dp">

        <ImageView
            android:id="@+id/img"
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:scaleType="fitXY"
            android:src="@drawable/girl1"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <TextView
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/img"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="10dp"
            android:text="我是名字"
            android:textSize="15sp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/img" />
    </RelativeLayout>
</RelativeLayout>

实体类

class DataItemBean(val title: String, val list: MutableList<ItemBean>) {
}
class ItemBean(val img: Int, val name: String) {
}

回调接口

点击item回调

interface OnItemClickListener {
    fun onItemClick(view: View, position:Int)
}

点击item 子控件回调 

interface OnItemChildClickListener {
    fun onItemChildClick(view: View, position:Int)
}

适配器

外层的

class MainAdapter(val context: Context,val dataItemList:MutableList<DataItemBean>):RecyclerView.Adapter<MainAdapter.RecyclerViewHolder>(){

    lateinit var recyclerItemAdapter:RecyclerItemAdapter

    lateinit var onItemClickListener: OnItemClickListener

    fun onItemClickListener(onItemClickListener:OnItemClickListener){
        this.onItemClickListener= onItemClickListener;
    }
    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerViewHolder {
        var view = LayoutInflater.from(context).inflate(R.layout.item_recycler,parent,false)
        var recyclerViewHolder:RecyclerViewHolder = RecyclerViewHolder(view)
        view.setOnClickListener {
            onItemClickListener.onItemClick(view, recyclerViewHolder.adapterPosition)
        }
        return recyclerViewHolder
    }

    override fun getItemCount(): Int {
        return dataItemList.size
    }

    override fun onBindViewHolder(holder: RecyclerViewHolder, position: Int) {

        // 创建一个包含五彩缤纷字体效果的SpannableString
        val spannableString = SpannableString(dataItemList.get(position).title)
        // 设置不同部分的颜色
        spannableString.setSpan(ForegroundColorSpan(Color.RED), 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        spannableString.setSpan(ForegroundColorSpan(Color.GREEN), 1, 2, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        spannableString.setSpan(ForegroundColorSpan(Color.BLUE), 2, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        spannableString.setSpan(ForegroundColorSpan(Color.MAGENTA), 3, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        holder.textView.text=spannableString

        recyclerItemAdapter = RecyclerItemAdapter(context,dataItemList.get(position).list)

        holder.recyclerItem.adapter =recyclerItemAdapter
        recyclerItemAdapter.onItemChildImgClickListener(object:OnItemChildClickListener{
            override fun onItemChildClick(view: View, position2: Int) {
                Toast.makeText(context,position.toString()+"-"+position2.toString(),Toast.LENGTH_SHORT).show()
            }
        })
        recyclerItemAdapter.onItemChildTvClickListener(object:OnItemChildClickListener{
            override fun onItemChildClick(view: View, position2: Int) {
                Toast.makeText(context,dataItemList.get(position).list.get(position2).name,Toast.LENGTH_SHORT).show()
            }
        })
        val linearLayoutManager = LinearLayoutManager(context)
        linearLayoutManager.orientation = LinearLayoutManager.HORIZONTAL
        holder.recyclerItem.layoutManager = linearLayoutManager
    }

    inner class RecyclerViewHolder(view: View) : RecyclerView.ViewHolder(view){
        var textView: TextView = view.findViewById(R.id.textView)
        var recyclerItem:RecyclerView = view.findViewById(R.id.recycler_item)
    }
}

 嵌套的RecyclerView

class RecyclerItemAdapter(val context: Context, val list:MutableList<ItemBean>) : RecyclerView.Adapter<RecyclerItemAdapter.ViewHolder>(){

    lateinit var onItemChildImgClickListener: OnItemChildClickListener
    lateinit var onItemChildTvClickListener: OnItemChildClickListener

    fun onItemChildImgClickListener(onItemChildImgClickListener: OnItemChildClickListener){
        this.onItemChildImgClickListener= onItemChildImgClickListener;
    }
    fun onItemChildTvClickListener(onItemChildTvClickListener: OnItemChildClickListener){
        this.onItemChildTvClickListener= onItemChildTvClickListener;
    }

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
        val view =LayoutInflater.from(context).inflate(R.layout.item_img,null,false)
        val viewHolder=ViewHolder(view)
        viewHolder.img.setOnClickListener {
            onItemChildImgClickListener.onItemChildClick(view, viewHolder.adapterPosition)
        }
        viewHolder.text.setOnClickListener {
            onItemChildTvClickListener.onItemChildClick(view, viewHolder.adapterPosition)
        }
        return viewHolder
    }

    override fun getItemCount(): Int {
        return list.size
    }

    override fun onBindViewHolder(holder: ViewHolder, position: Int) {
        holder.img.setImageResource(list.get(position).img)
        holder.text.text = list.get(position).name
    }

    inner class ViewHolder(view: View):RecyclerView.ViewHolder(view){
        val img: ImageView = view.findViewById(R.id.img)
        val text:TextView = view.findViewById(R.id.tv)
    }

}

MainActivity.java

class MainActivity : AppCompatActivity() {

    lateinit var binding:ActivityMainBinding
    lateinit var mainAdapter:MainAdapter

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        binding = ActivityMainBinding.inflate(layoutInflater)
        setContentView(binding.root)

        val list1: MutableList<ItemBean> = mutableListOf()
        list1.add(ItemBean(R.drawable.girl1,"美女-1"))
        list1.add(ItemBean(R.drawable.girl2,"美女-2"))
        list1.add(ItemBean(R.drawable.girl3,"美女-3"))

        val list2: MutableList<ItemBean> = mutableListOf()
        list2.add(ItemBean(R.drawable.girl4,"中森明菜-1"))
        list2.add(ItemBean(R.drawable.girl5,"中森明菜-2"))
        list2.add(ItemBean(R.drawable.girl6,"中森明菜-3"))

        val list3: MutableList<ItemBean> = mutableListOf()
        list3.add(ItemBean(R.drawable.girl7,"工藤静香-1"))
        list3.add(ItemBean(R.drawable.girl8,"工藤静香-2"))
        list3.add(ItemBean(R.drawable.girl9,"工藤静香-3"))

        var dataBean1 = DataItemBean("美女图片",list1)
        var dataBean2 = DataItemBean("中森明菜",list2)
        var dataBean3 = DataItemBean("工藤静香",list3)

        val dataItemList: MutableList<DataItemBean> = mutableListOf()
        dataItemList.add(dataBean1)
        dataItemList.add(dataBean2)
        dataItemList.add(dataBean3)

        mainAdapter = MainAdapter(this,dataItemList)
        mainAdapter.onItemClickListener(object:OnItemClickListener{
            override fun onItemClick(view: View, position: Int) {
                Toast.makeText(this@MainActivity,dataItemList.get(position).title,Toast.LENGTH_SHORT).show()
            }
        })
        binding.recyclerList.adapter=mainAdapter
        var linearLayoutManager = LinearLayoutManager(this)
        linearLayoutManager.orientation = LinearLayoutManager.VERTICAL
        binding.recyclerList.layoutManager = linearLayoutManager

    }
}

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/csdndfg2/article/details/135988481

智能推荐

python中文显示不出来_解决Python词云库wordcloud不显示中文的问题-程序员宅基地

文章浏览阅读2.6k次。解决Python词云库wordcloud不显示中文的问题2018-11-25背景:wordcloud是基于Python开发的词云生成库,功能强大使用简单。github地址:https://github.com/amueller/word_cloudwordcloud默认是不支持显示中文的,中文会被显示成方框。安装:安装命令:pip install wordcloud解决:经过测试发现不支持显示中文..._词云python代码无法输出文字

台式计算机cpu允许温度,玩游戏cpu温度多少正常(台式电脑夏季CPU一般温度多少)...-程序员宅基地

文章浏览阅读1.1w次。随着炎热夏季的到来,当玩游戏正爽的时候,电脑突然死机了,自动关机了,是不是有想给主机一脚的冲动呢?这个很大的原因是因为CPU温度过高导致的。很多新手玩家可能都有一个疑虑,cpu温度多少以下正常?有些说是60,有些说是70,到底多高CPU温度不会死机呢?首先我们先看看如何查看CPU的温度。下载鲁大师并安装,运行鲁大师软件,即可进入软件界面,并点击温度管理,即可看到电脑各个硬件的温度。鲁大师一般情况下..._台式机玩游戏温度多少正常

小白自学Python日记 Day2-打印打印打印!_puthon打印任务收获-程序员宅基地

文章浏览阅读243次。Day2-打印打印打印!我终于更新了!(哭腔)一、 最简单的打印最最简单的打印语句: print(“打印内容”)注意:python是全英的,符号记得是半角下面是我写的例子:然后进入power shell ,注意:你需要使用cd来进入你保存的例子的文件夹,保存时名字应该取为xxx.py我终于知道为什么文件夹取名都建议取英文了,因为进入的时候是真的很麻烦!如果你没有进入正确的文件夹..._puthon打印任务收获

Docker安装:Errors during downloading metadata for repository ‘appstream‘:_"cenerrors during download metadata for repository-程序员宅基地

文章浏览阅读1k次。centos8问题参考CentOS 8 EOL如何切换源? - 云服务器 ECS - 阿里云_"cenerrors during download metadata for repository \"appstream"

尚硅谷_谷粒学苑-微服务+全栈在线教育实战项目之旅_基于微服务的在线教育平台尚硅谷-程序员宅基地

文章浏览阅读2.7k次,点赞3次,收藏11次。SpringBoot+Maven+MabatisPlusmaven在新建springboot项目引入RELEASE版本出错maven在新建springboot项目引入RELEASE版本出错maven详解maven就是通过pom.xml中的配置,就能够从仓库获取到想要的jar包。仓库分为:本地仓库、第三方仓库(私服)、中央仓库springframework.boot:spring-boot-starter-parent:2.2.1.RELEASE’ not found若出现jar包下载不了只有两_基于微服务的在线教育平台尚硅谷

随便推点

网络学习第六天(路由器、VLAN)_路由和vlan-程序员宅基地

文章浏览阅读316次。路由的概念路由器它称之为网关设备。路由器就是用于连接不同网络的设备路由器是位于OSI模型的第三层。路由器通过路由决定数据的转发。网关的背景:当时每家计算机厂商,用于交换数据的通信程序(协议)和数据描述格式各不相同。因此,就把用于相互转换这些协议和格式的计算机称为网关。路由器与三层交换器的对比路由协议对比路由器的作用:1.路由寻址2.实现不同网络之间相连的功能3.通过路由决定数据的转发,转发策略称为 路由选择。VLAN相关技术什么是VLAN?中文名称叫:虚拟局域网。虚_路由和vlan

设置div背景颜色透明度,内部元素不透明_div设置透明度,里面的内容不透明-程序员宅基地

文章浏览阅读2.8w次,点赞6次,收藏22次。设置div背景颜色透明度,内部元素不透明:.demo{  background-color:rgba(255,255,255,0.15) } 错误方式:.demo{ background-color:#5CACEE;opacity:0.75;} 这样会导致div里面的元素内容和背景颜色一起变透明只针对谷歌浏览器的测试_div设置透明度,里面的内容不透明

Discuz!代码大全-程序员宅基地

文章浏览阅读563次。1.[ u]文字:在文字的位置可以任意加入您需要的字符,显示为下划线效果。2.[ align=center]文字:在文字的位置可以任意加入您需要的字符,center位置center表示居中,left表示居左,right表示居右。5.[ color=red]文字:输入您的颜色代码,在标签的中间插入文字可以实现文字颜色改变。6.[ SIZE=数字]文字:输入您的字体大小,在标签的中间插入文..._discuzcode 大全

iOS NSTimer定时器-程序员宅基地

文章浏览阅读2.6k次。iOS中定时器有三种,分别是NSTimer、CADisplayLink、dispatch_source,下面就分别对这三种计时器进行说明。一、NSTimerNSTimer这种定时器用的比较多,但是特别需要注意释放问题,如果处理不好很容易引起循环引用问题,造成内存泄漏。1.1 NSTimer的创建NSTimer有两种创建方法。方法一:这种方法虽然创建了NSTimer,但是定时器却没有起作用。这种方式创建的NSTimer,需要加入到NSRunLoop中,有NSRunLoop的驱动才会让定时器跑起来。_ios nstimer

Linux常用命令_ls-lmore-程序员宅基地

文章浏览阅读4.8k次,点赞17次,收藏51次。Linux的命令有几百个,对程序员来说,常用的并不多,考虑各位是初学者,先学习本章节前15个命令就可以了,其它的命令以后用到的时候再学习。1、开机 物理机服务器,按下电源开关,就像windows开机一样。 在VMware中点击“开启此虚拟机”。2、登录 启动完成后,输入用户名和密码,一般情况下,不要用root用户..._ls-lmore

MySQL基础命令_mysql -u user-程序员宅基地

文章浏览阅读4.1k次。1.登录MYSQL系统命令打开DOS命令框shengfen,以管理员的身份运行命令1:mysql -u usernae -p password命令2:mysql -u username -p password -h 需要连接的mysql主机名(localhost本地主机名)或是mysql的ip地址(默认为:127.0.0.1)-P 端口号(默认:3306端口)使用其中任意一个就OK,输入命令后DOS命令框得到mysql>就说明已经进入了mysql系统2. 查看mysql当中的._mysql -u user

推荐文章

热门文章

相关标签