Android?RecyclerView实现九宫格效果

 更新时间:2022年06月28日 14:12:31   作者:蹲街式等待  
这篇文章主要为大家详细介绍了Android?RecyclerView实现九宫格效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
(福利推荐:【腾讯云】服务器最新限时优惠活动,云服务器1核2G仅99元/年、2核4G仅768元/3年,立即抢购>>>:9i0i.cn/qcloud

(福利推荐:你还在原价购买阿里云服务器?现在阿里云0.8折限时抢购活动来啦!4核8G企业云服务器仅2998元/3年,立即抢购>>>:9i0i.cn/aliyun

RecyclerView更加优化的复用机制和方便实现UI效果,几乎替代Listview和GridView的使用。但是分割线的实现,需要自己继承ItemDecoration来绘制。

效果图

item的布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
? ? android:orientation="vertical"
? ? android:gravity="center"
? ? android:layout_width="match_parent"
? ? android:layout_height="wrap_content">

? ? <LinearLayout
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:orientation="horizontal"
? ? ? ? android:gravity="center_vertical"
? ? ? ? android:layout_marginTop="25dp"
? ? ? ? android:layout_marginLeft="15dp"
? ? ? ? android:layout_marginRight="15dp">

? ? ? ? <TextView
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? android:layout_weight="1"
? ? ? ? ? ? android:text="餐饮"
? ? ? ? ? ? android:id="@+id/txt_title"
? ? ? ? ? ? android:textSize="16sp"
? ? ? ? ? ? android:textStyle="bold"
? ? ? ? ? ? android:textColor="#555555"/>

? ? ? ? <ImageView
? ? ? ? ? ? android:layout_width="36dp"
? ? ? ? ? ? android:layout_height="36dp"
? ? ? ? ? ? android:id="@+id/img_title"
? ? ? ? ? ? android:src="http://9i0i.com/pic.php?p=@mipmap/luggage_blue"/>
? ? </LinearLayout>

? ? <LinearLayout
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="20dp"
? ? ? ? android:orientation="vertical"
? ? ? ? android:layout_marginBottom="25dp"
? ? ? ? android:layout_marginLeft="15dp"
? ? ? ? android:layout_marginRight="15dp">

? ? ? ? <TextView
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="match_parent"
? ? ? ? ? ? android:text="提供航空 餐饮美食"
? ? ? ? ? ? android:id="@+id/txt_info"
? ? ? ? ? ? android:textSize="14sp"
? ? ? ? ? ? android:textColor="#999999"/>
? ? </LinearLayout>

</LinearLayout>

activity_main.xml布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
? ? xmlns:tools="http://schemas.android.com/tools"
? ? android:orientation="vertical"
? ? android:layout_width="match_parent"
? ? android:layout_height="match_parent"
? ? android:background="#f1f1f1"
? ? tools:context=".MainActivity">

? ? <TextView
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="50dp"
? ? ? ? android:textColor="#ffffff"
? ? ? ? android:textSize="18sp"
? ? ? ? android:gravity="center"
? ? ? ? android:text="RecyclerView实现九宫格"
? ? ? ? android:background="#30B8E3"/>

? ? <ScrollView
? ? ? ? android:layout_width="match_parent"
? ? ? ? android:layout_height="match_parent">

? ? ? ? <LinearLayout
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? android:orientation="vertical">

? ? ? ? ? ? <LinearLayout
? ? ? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? ? ? android:layout_height="50dp"
? ? ? ? ? ? ? ? android:gravity="center_vertical"
? ? ? ? ? ? ? ? android:layout_marginLeft="15dp"
? ? ? ? ? ? ? ? android:layout_marginRight="15dp"
? ? ? ? ? ? ? ? android:orientation="horizontal">

? ? ? ? ? ? ? ? <ImageView
? ? ? ? ? ? ? ? ? ? android:layout_width="20dp"
? ? ? ? ? ? ? ? ? ? android:layout_height="20dp"
? ? ? ? ? ? ? ? ? ? android:src="http://9i0i.com/pic.php?p=@mipmap/air_gray"
? ? ? ? ? ? ? ? ? ? android:layout_marginRight="8dp"/>

? ? ? ? ? ? ? ? <TextView
? ? ? ? ? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? ? ? android:text="航行助手"
? ? ? ? ? ? ? ? ? ? android:textStyle="bold"
? ? ? ? ? ? ? ? ? ? android:textSize="18sp"/>
? ? ? ? ? ? </LinearLayout>

? ? ? ? ? ? <android.support.v7.widget.RecyclerView
? ? ? ? ? ? ? ? android:id="@+id/main_recycleview"
? ? ? ? ? ? ? ? android:divider="#00000000"
? ? ? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:background="@drawable/shape_bg"
? ? ? ? ? ? ? ? android:layout_marginLeft="15dp"
? ? ? ? ? ? ? ? android:layout_marginRight="15dp"
? ? ? ? ? ? ? ? android:layout_marginBottom="15dp">
? ? ? ? ? ? </android.support.v7.widget.RecyclerView>

? ? ? ? </LinearLayout>
? ? </ScrollView>

</LinearLayout>

MainActivity.java代码

package com.davis.recyclerviewdemo;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;

import com.davis.recyclerviewdemo.adapter.CommonDecoration;
import com.davis.recyclerviewdemo.adapter.RecyclerViewAdapter;
import com.davis.recyclerviewdemo.bean.MenuBean;

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

public class MainActivity extends AppCompatActivity {

? ? private RecyclerView recyclerView;
? ? private RecyclerViewAdapter adapter;
? ? private List<MenuBean> listDatas = new ArrayList<MenuBean>();

? ? @Override
? ? protected void onCreate(Bundle savedInstanceState) {
? ? ? ? super.onCreate(savedInstanceState);
? ? ? ? setContentView(R.layout.activity_main);
? ? ? ? init();
? ? }

? ? private void init(){
? ? ? ? recyclerView = (RecyclerView)findViewById(R.id.main_recycleview);
? ? ? ? loadMenuData();

? ? ? ? recyclerView.setLayoutManager(new GridLayoutManager(this, 2));
? ? ? ? recyclerView.addItemDecoration(new CommonDecoration(this));

? ? ? ? adapter = new RecyclerViewAdapter(this, listDatas);
? ? ? ? recyclerView.setAdapter(adapter);
? ? }

? ? private void loadMenuData(){
? ? ? ? listDatas.add(new MenuBean("安检", "快速安检", R.mipmap.check_blue));
? ? ? ? listDatas.add(new MenuBean("行李", "提醒行李动态", R.mipmap.luggage_blue));
? ? ? ? listDatas.add(new MenuBean("餐饮", "提供航空 餐饮美食", R.mipmap.food_blue));
? ? ? ? listDatas.add(new MenuBean("VIP休息", "机场休息室", R.mipmap.vip_blue));
? ? ? ? listDatas.add(new MenuBean("机舱服务", "机舱上网 游戏娱乐", R.mipmap.service_blue));
? ? ? ? listDatas.add(new MenuBean("更多", "更多信息", R.mipmap.more_blue));
? ? }
}

其中GridLayoutManager用来设置显示列数,CommonDecoration用来绘制分隔线。

CommonDecoration.java代码

package com.davis.recyclerviewdemo.adapter;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.StaggeredGridLayoutManager;
import android.view.View;

/**
?* Created by Administrator on 2019/4/14.
?*/

public class CommonDecoration extends RecyclerView.ItemDecoration {
? ? private static final int[] ATTRS = new int[]{android.R.attr.listDivider};
? ? private Drawable mDivider;

? ? public CommonDecoration(Context context) {
? ? ? ? final TypedArray a = context.obtainStyledAttributes(ATTRS);
? ? ? ? mDivider = a.getDrawable(0);
? ? ? ? a.recycle();
? ? }

? ? @Override
? ? public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) {

? ? ? ? drawHorizontal(c, parent);
? ? ? ? drawVertical(c, parent);

? ? }

? ? private int getSpanCount(RecyclerView parent) {
? ? ? ? // 列数
? ? ? ? int spanCount = -1;
? ? ? ? RecyclerView.LayoutManager layoutManager = parent.getLayoutManager();
? ? ? ? if (layoutManager instanceof GridLayoutManager) {

? ? ? ? ? ? spanCount = ((GridLayoutManager) layoutManager).getSpanCount();
? ? ? ? } else if (layoutManager instanceof StaggeredGridLayoutManager) {
? ? ? ? ? ? spanCount = ((StaggeredGridLayoutManager) layoutManager)
? ? ? ? ? ? ? ? ? ? .getSpanCount();
? ? ? ? }
? ? ? ? return spanCount;
? ? }

? ? public void drawHorizontal(Canvas c, RecyclerView parent) {
? ? ? ? int childCount = parent.getChildCount();
? ? ? ? for (int i = 0; i < childCount; i++) {
? ? ? ? ? ? final View child = parent.getChildAt(i);
? ? ? ? ? ? final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child
? ? ? ? ? ? ? ? ? ? .getLayoutParams();
? ? ? ? ? ? final int left = child.getLeft() - params.leftMargin;
? ? ? ? ? ? final int right = child.getRight() + params.rightMargin
? ? ? ? ? ? ? ? ? ? + mDivider.getIntrinsicWidth();
? ? ? ? ? ? final int top = child.getBottom() + params.bottomMargin;
? ? ? ? ? ? final int bottom = top + mDivider.getIntrinsicHeight();
? ? ? ? ? ? mDivider.setBounds(left, top, right, bottom);
? ? ? ? ? ? mDivider.draw(c);
? ? ? ? }
? ? }

? ? public void drawVertical(Canvas c, RecyclerView parent) {
? ? ? ? final int childCount = parent.getChildCount();
? ? ? ? for (int i = 0; i < childCount; i++) {
? ? ? ? ? ? final View child = parent.getChildAt(i);

? ? ? ? ? ? final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child
? ? ? ? ? ? ? ? ? ? .getLayoutParams();
? ? ? ? ? ? final int top = child.getTop() - params.topMargin;
? ? ? ? ? ? final int bottom = child.getBottom() + params.bottomMargin;
? ? ? ? ? ? final int left = child.getRight() + params.rightMargin;
? ? ? ? ? ? final int right = left + mDivider.getIntrinsicWidth();

? ? ? ? ? ? mDivider.setBounds(left, top, right, bottom);
? ? ? ? ? ? mDivider.draw(c);
? ? ? ? }
? ? }

? ? private boolean isLastColum(RecyclerView parent, int pos, int spanCount,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int childCount) {
? ? ? ? RecyclerView.LayoutManager layoutManager = parent.getLayoutManager();
? ? ? ? if (layoutManager instanceof GridLayoutManager) {
? ? ? ? ? ? // 如果是最后一列,则不需要绘制右边
? ? ? ? ? ? if ((pos + 1) % spanCount == 0) {
? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? }
? ? ? ? } else if (layoutManager instanceof StaggeredGridLayoutManager) {
? ? ? ? ? ? int orientation = ((StaggeredGridLayoutManager) layoutManager)
? ? ? ? ? ? ? ? ? ? .getOrientation();
? ? ? ? ? ? if (orientation == StaggeredGridLayoutManager.VERTICAL) {
? ? ? ? ? ? ? ? // 如果是最后一列,则不需要绘制右边
? ? ? ? ? ? ? ? if ((pos + 1) % spanCount == 0) {
? ? ? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? childCount = childCount - childCount % spanCount;
? ? ? ? ? ? ? ? if (pos >= childCount) {// 如果是最后一列,则不需要绘制右边
? ? ? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? return false;
? ? }

? ? private boolean isLastRaw(RecyclerView parent, int pos, int spanCount, int childCount) {
? ? ? ? RecyclerView.LayoutManager layoutManager = parent.getLayoutManager();
? ? ? ? if (layoutManager instanceof GridLayoutManager) {
? ? ? ? ? ? int last = childCount % spanCount;
? ? ? ? ? ? if (last == 0) {
? ? ? ? ? ? ? ? last = spanCount;
? ? ? ? ? ? }
? ? ? ? ? ? childCount = childCount - last;
? ? ? ? ? ? if (pos >= childCount) {// 如果是最后一行,则不需要绘制底部
? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? }
? ? ? ? } else if (layoutManager instanceof StaggeredGridLayoutManager) {
? ? ? ? ? ? int orientation = ((StaggeredGridLayoutManager) layoutManager)
? ? ? ? ? ? ? ? ? ? .getOrientation();
? ? ? ? ? ? // StaggeredGridLayoutManager 且纵向滚动
? ? ? ? ? ? if (orientation == StaggeredGridLayoutManager.VERTICAL) {
? ? ? ? ? ? ? ? int last = childCount % spanCount;
? ? ? ? ? ? ? ? if (last == 0) {
? ? ? ? ? ? ? ? ? ? last = spanCount;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? childCount = childCount - last;
? ? ? ? ? ? ? ? // 如果是最后一行,则不需要绘制底部
? ? ? ? ? ? ? ? if (pos >= childCount) {
? ? ? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? } else {// StaggeredGridLayoutManager 且横向滚动
? ? ? ? ? ? ? ? // 如果是最后一行,则不需要绘制底部
? ? ? ? ? ? ? ? if ((pos + 1) % spanCount == 0) {
? ? ? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? return false;
? ? }

? ? @Override
? ? public void getItemOffsets(Rect outRect, int itemPosition,
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?RecyclerView parent) {
? ? ? ? int spanCount = getSpanCount(parent);
? ? ? ? int childCount = parent.getAdapter().getItemCount();

? ? ? ? if (isLastColum(parent, itemPosition, spanCount, childCount)) {// 如果是最后一列,则不需要绘制右边
? ? ? ? ? ? if (itemPosition == (childCount - 1)) {
? ? ? ? ? ? ? ? outRect.set(0, 0, 0, 0);
? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? outRect.set(0, 0, 0, mDivider.getIntrinsicHeight());
? ? ? ? ? ? }
? ? ? ? } else if (isLastRaw(parent, itemPosition, spanCount, childCount)) {// 如果是最后一行,则不需要绘制底部
? ? ? ? ? ? outRect.set(0, 0, mDivider.getIntrinsicWidth(), 0);
? ? ? ? } else {
? ? ? ? ? ? outRect.set(0, 0, mDivider.getIntrinsicWidth(),
? ? ? ? ? ? ? ? ? ? mDivider.getIntrinsicHeight());
? ? ? ? }
? ? }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持程序员之家。

相关文章

  • Windows实现Flutter环境搭建及配置这一篇就够了

    Windows实现Flutter环境搭建及配置这一篇就够了

    这篇文章主要介绍了Windows实现Flutter环境搭建及配置这一篇就够了,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-12-12
  • Windows下快速搭建安卓开发环境Android studio

    Windows下快速搭建安卓开发环境Android studio

    这篇文章主要介绍了Windows下快速搭建安卓开发环境Android studio的相关资料,感兴趣的小伙伴们可以参考一下
    2016-07-07
  • Android Compose Column列表不自动刷新问题

    Android Compose Column列表不自动刷新问题

    这篇文章主要介绍了Android Compose Column列表数据更新列表不刷新的问题,总的来说这并不是一道难题,那为什么要拿出这道题介绍?拿出这道题真正想要传达的是解题的思路,以及不断优化探寻最优解的过程。希望通过这道题能给你带来一种解题优化的思路
    2023-01-01
  • 利用Android中的TextView实现逐字显示动画

    利用Android中的TextView实现逐字显示动画

    在安卓程序启动的时候,想逐字显示一段话,每个字都有一个从透明到不透明的渐变动画。那如何显示这个效果,下面一起来看看。
    2016-08-08
  • Android开发listview选中高亮简单实现代码分享

    Android开发listview选中高亮简单实现代码分享

    这篇文章主要介绍了Android开发listview选中高亮简单实现代码分享,具有一定借鉴价值,需要的朋友可以参考下
    2018-01-01
  • Android ListView的item中嵌套ScrollView的解决办法

    Android ListView的item中嵌套ScrollView的解决办法

    有时候,listview 的item要显示的字段比较多,考虑到显示问题,item外面不得不嵌套ScrollView来实现,纠结怎么解决此问题呢?下面小编给大家分享下Android ListView的item中嵌套ScrollView的解决办法,感兴趣的朋友一起看看吧
    2016-10-10
  • android studio广播机制使用详解

    android studio广播机制使用详解

    这篇文章主要为大家详细介绍了android studio广播机制的使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • Android多边形区域递归种子填充算法的示例代码

    Android多边形区域递归种子填充算法的示例代码

    这篇文章主要介绍了Android多边形区域递归种子填充算法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-05-05
  • Android编程自定义组件实例详解

    Android编程自定义组件实例详解

    这篇文章主要介绍了Android自定义组件,结合实例形式分析了Android自定义组件的原理、实现方法及相关操作技巧,需要的朋友可以参考下
    2017-06-06
  • 详解ASP.NET Core MVC四种枚举绑定方式

    详解ASP.NET Core MVC四种枚举绑定方式

    这篇文章主要介绍了详解ASP.NET Core MVC四种枚举绑定方式, 小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-04-04

最新评论

?


http://www.vxiaotou.com