Android实现RecyclerView嵌套流式布局的详细过程

 更新时间:2022年12月24日 11:46:11   作者:wayne214  
最近在做需求的时候,碰到有各种筛选项的界面,下面这篇文章主要给大家介绍了关于Android实现RecyclerView嵌套流式布局的详细过程,文中通过示例代码介绍的非常详细,需要的朋友可以参考下

前言

Android开发中,列表页面是常见需求,流式布局的标签效果也是常见需求,那么两者结合的效果啥样呢?这篇文章简单实现一下。

实现过程

  • 添加流式布局依赖,在app/build.gradle文件中添加如下代码
implementation 'com.google.android.flexbox:flexbox:3.0.0'
  • 新建Activity文件RecyclerViewActivity.class
package com.example.androidstudy;

import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;

import android.os.Bundle;
import android.widget.Toast;

import com.example.androidstudy.adapter.MyRecyclerAdapter;
import com.example.androidstudy.bean.TestData;

import java.util.ArrayList;
import java.util.List;

public class RecyclerViewActivity extends AppCompatActivity {

    private RecyclerView recyclerView;
    private MyRecyclerAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_recycler_view);
        initViews();
        initListener();
    }

    private void initListener() {
        adapter.setItemCellClicker(tag -> Toast.makeText(RecyclerViewActivity.this, tag, Toast.LENGTH_SHORT).show());
    }

    private void initViews() {
        recyclerView = findViewById(R.id.recyclerview);
        // 设置布局管理器
        recyclerView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false));
        List<String> sss = new ArrayList<>();
        sss.add("重型卡车1");
        sss.add("重车11");
        sss.add("重型卡车3445");
        sss.add("重型卡车6677");
        List<String> sss1 = new ArrayList<>();
        sss1.add("轻型卡车1");
        sss1.add("轻车11");
        sss1.add("轻型卡车3445");
        sss1.add("轻型卡车6677");

        List<String> sss2 = new ArrayList<>();
        sss2.add("其他1");
        sss2.add("其他2");
        List<TestData> list = new ArrayList<>();
        list.add(new TestData("重型",sss));
        list.add(new TestData("轻型", sss1));
        list.add(new TestData("其他", sss2));
        // 实例化Adapter对象
        adapter = new MyRecyclerAdapter(this, list);
        // 设置Adapter
        recyclerView.setAdapter(adapter);
        adapter.notifyDataSetChanged();
    }
}

Activity页面布局activity_recycler_view.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=".RecyclerViewActivity">

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

</androidx.constraintlayout.widget.ConstraintLayout>
  • 创建Adapter文件MyRecyclerAdapter.class
package com.example.androidstudy.adapter;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;

import com.example.androidstudy.R;
import com.example.androidstudy.bean.TestData;
import com.google.android.flexbox.FlexboxLayout;

import java.util.List;

public class MyRecyclerAdapter extends RecyclerView.Adapter<MyRecyclerAdapter.MyViewHolder>{

    private List<TestData> data;
    private Context myContext;

    public MyRecyclerAdapter(Context context, List<TestData> data) {
        this.myContext = context;
        this.data = data;
    }

    @NonNull
    @Override
    public MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        View inflate = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_cell, parent, false);
        return new MyViewHolder(inflate);
    }

    public interface ItemCellClicker{
        void onItemClick(String tag);
    }

  // 流式布局标签点击事件
    public ItemCellClicker itemCellClicker;
  // 设置点击事件回调
    public void setItemCellClicker(ItemCellClicker itemCellClicker){
        this.itemCellClicker = itemCellClicker;
    }

    @Override
    public void onBindViewHolder(@NonNull MyViewHolder holder, int position) {
        TextView title = holder.itemView.findViewById(R.id.tv_title);
        FlexboxLayout flexboxLayout = holder.itemView.findViewById(R.id.flexbox_layout);

        TestData data = this.data.get(position);
        List<String> tags = data.getTag();
        flexboxLayout.removeAllViews();
        // flexbox布局动态添加标签
        for (int i = 0; i < tags.size(); i++) {
            String temp = tags.get(i);
            View tagView = LayoutInflater.from(myContext).inflate(R.layout.item_tag_cell, null, false);
            TextView tag = tagView.findViewById(R.id.tv_tag);
            tag.setText(temp);
            // 设置标签点击事件
            tag.setOnClickListener(view -> itemCellClicker.onItemClick(temp));
            flexboxLayout.addView(tagView);
        }
        title.setText(data.getTitle());
    }

    @Override
    public int getItemCount() {
        return data.size();
    }

    public static class MyViewHolder extends RecyclerView.ViewHolder{

        public MyViewHolder(@NonNull View itemView) {
            super(itemView);
        }
    }
}

列表项布局item_cell.xml

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="10dp"
    tools:context=".MyActivity">

    <TextView
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        android:id="@+id/tv_title"
        android:text="Hello android"
        android:textSize="20sp"
        android:textColor="@color/black"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <!--流式布局-->
    <com.google.android.flexbox.FlexboxLayout
        android:id="@+id/flexbox_layout"
        android:orientation="horizontal"
        app:flexWrap="wrap"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

列表中标签布局item_tag_cell.xml

<LinearLayout 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="wrap_content"
    android:padding="10dp"
    tools:context=".MyActivity">

    <TextView
        android:id="@+id/tv_tag"
        android:paddingHorizontal="12dp"
        android:background="@drawable/item_tag_bg"
        android:gravity="center"
        android:text="Hello android"
        android:textSize="20sp"
        android:textColor="@color/black"
        android:layout_width="wrap_content"
        android:layout_height="32dp"/>

</LinearLayout>

效果

总结

到此这篇关于Android实现RecyclerView嵌套流式布局的文章就介绍到这了,更多相关Android RecyclerView嵌套流式布局内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Android ActionBar制作时钟实例解析

    Android ActionBar制作时钟实例解析

    这篇文章主要为大家详细介绍了Android ActionBar制作时钟的实现代码,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • Android table布局开发实现简单计算器

    Android table布局开发实现简单计算器

    这篇文章主要为大家详细介绍了Android table布局开发实现简单计算器,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-05-05
  • Android Flutter使用本地数据库编写备忘录应用

    Android Flutter使用本地数据库编写备忘录应用

    这篇文章主要为大家详细介绍了Android Flutter如何使用本地数据库实现编写简单的备忘录应用,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一下
    2023-03-03
  • Android中关于递归和二分法的算法实例代码

    Android中关于递归和二分法的算法实例代码

    这篇文章主要介绍了Android中关于递归和二分法的算法实例代码的相关资料,需要的朋友可以参考下
    2016-10-10
  • 浅谈Android AsyncTask内存安全的一种使用方式

    浅谈Android AsyncTask内存安全的一种使用方式

    这篇文章主要介绍了浅谈Android AsyncTask内存安全的一种使用方式,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-08-08
  • 基于界面适配华为手机的虚拟按键的解决方法

    基于界面适配华为手机的虚拟按键的解决方法

    下面小编就为大家分享一篇基于界面适配华为手机的虚拟按键的解决方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android学习之介绍Binder的简单使用

    Android学习之介绍Binder的简单使用

    BInder方面的资料虽然感觉看的比较多,但是真正用的时候才发现有很多地方模棱两棵的,所以,打算用一个实例再来巩固一下binder的使用方法。这篇文章主要介绍了Android中Binder的简单使用,文中给出详细的示例代码,需要的朋友可以参考下
    2016-12-12
  • Android编程实现XML解析与保存的三种方法详解

    Android编程实现XML解析与保存的三种方法详解

    这篇文章主要介绍了Android编程实现XML解析与保存的三种方法,结合实例形式详细分析了Android实现xml解析的SAX、DOM、PULL三种方法的相关操作技巧,需要的朋友可以参考下
    2017-08-08
  • Android 渲染机制深入理解

    Android 渲染机制深入理解

    这篇文章主要介绍了Android 渲染机制深入理解的相关资料,需要的朋友可以参考下
    2017-03-03
  • 使用ListView实现网上订餐首页

    使用ListView实现网上订餐首页

    这篇文章主要为大家详细介绍了使用ListView实现网上订餐首页,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-01-01

最新评论