美文网首页android开发杂识Android开发部落android自定义控件
Android开源库V - Layout:淘宝、天猫都在用的UI

Android开源库V - Layout:淘宝、天猫都在用的UI

作者: Carson带你学安卓 | 来源:发表于2017-05-02 08:46 被阅读26401次

前言

  • V- Layout 是阿里出品的基础 UI 框架,用于快速实现页面的复杂布局,在手机天猫 Android版 内广泛使用
电商图
  • 让人激动的是,在上个月V- Layout终于在Github上开源!

Github - alibaba - vlayout

Github
  • 在五一假期我对V- Layout进行了详细分析,我将献上一份 V- Layout的使用攻略 & 源码分析,希望你们会喜欢。

阅读本文前请先看:
Android Tangram模型:连淘宝、天猫都在用的UI框架模型你一定要懂


目录

目录

1. 为什么要使用 V - Layout

在讲解 V - Layout 前,我们先来搞懂一个问题:为什么要使用 V - Layout

1.1 背景

  • AndroidUI 性能消耗主要来自于两个方面:
  1. 布局层次嵌套导致多重 measure/layout
  2. View控件的创建和销毁
  • 为了解决上述问题,现有的解决方式是:
    1. 少用嵌套布局
    2. 使用 ListView/GirdView/RecyclerView等基础空间来处理View的回收与复用。

但是,很多时候我们需要在一个长列表下做多种类型的布局来分配各种元素,,特别是电商平台首页等页面,布局元素结构更加复杂多样。如下图:

电商图

此时的解决方案有所变化:不采用子View的复用,只采用一个主要的复用容器(如ListViewRecyclerView+LinearLayoutManager),然后在其中使用嵌套方式直接用各个组件进行拼接,减少了复用的能力

1.2 问题

这种做法还是会损失Android应用的性能。

1.3 解决方案

  • 通过自定义 LayoutManager 管理所有的布局类型
  • 即阿里出品的基础 UI 框架项目 VirtualLayout就是采用该方式来解决上述问题

2. 简介

  • 定义:VirtualLayout是阿里出品的基础 UI 框架项目
  • 作用:快速实现复杂的布局格式的混排 & 通过组件回收提高性能
效果图

3. 应用场景

  • 复杂的布局格式混排,如:浮动布局、栏格布局、通栏布局、一拖N布局、瀑布流布局,还可以组合使用这些布局
  • 具体场景是:如电商平台首页、活动页等等

V - Layout 目前已在手机天猫 & 淘宝 Android 版内广泛使用

实际应用效果图

4. 原理解析

V - Layout的本质原理是:通过自定义一个VirtualLayoutManager(继承自 LayoutManager),用于管理一系列LayoutHelper,将具体的布局能力交给LayoutHelper来完成,从而 快速实现组合布局 的需求。

  1. 每个 LayoutHelper负责 页面某一个范围内的布局
  2. V - Layout默认实现了10种默认布局:(对应同名的LayoutHelper)
    布局类型

4.1 源码类说明

  • V - Layout的源码类图如下:

    UML类图
  • 具体类说明

示意图
  • V - Layout默认实现了10种默认布局:(对应同名的LayoutHelper)
布局类型

下面会进行详细介绍。

  • 特别注意:
  1. 每一种LayoutHelper负责布局一批组件范围内的组件,不同组件范围内的组件之间,如果类型相同,可以在滑动过程中回收复用。因此回收粒度比较细,且可以跨布局类型复用。
  2. 支持扩展外部:即注册新的LayoutHelper,实现特殊的布局方式。下面会详细说明

介绍完类之后,我将详细分析 V - Layout的工作流程。


4.2 工作流程

  • V - Layout的工作流程分为 初始化 & 布局流程。如下图:
工作流程
  • 下面我将对初始化 & 布局流程作详细分析。

4.2.1 初始化

  • 在使用 V - layout 快速实现复杂布局前,需要先做一系列的初始化工作。

初始化流程与使用普通的 RecyclerView + LayoutManager 初始化流程基本一致:Vlayout的使用者

初始化流程
  • 此处的初始化 实际上 就是 使用者在使用 V - layout 时需要做的初始化工作。
  • 此处主要先讲解下数据列表的获取:本质上,是对页面实体 进行 卡片 & 组件的拆解,形成一个位置列表
示意图
  • 其他初始化步骤将在下面实例讲解进行详细说明

4.2.2 具体布局流程

  • 当完成初始化工作后,每当用户刚打开页面第一次渲染布局 或 用户滑动页面时,都会进行一次布局流程
  • 布局流程的本质是:自定义 VirtualLayoutManager持续获取页面状态,并通过LayoutHelperFinder找到对应的LayoutHelper从而实现对应的布局逻辑,从而快速实现组合布局 的需求
  • 具体流程如下
布局流程

总结

下面用一张图总结 V - Layout 的原理 & 工作流程

原理 & 工作流程

在讲完原理后,接下来我将如何使用 V - Layout


5. 使用步骤

  • V - Layout的使用其实就是上面说的初始化工作
  • 使用步骤如下:
使用步骤

下面我将对每个步骤进行详细说明。

步骤1:创建RecyclerView & VirtualLayoutManager 对象并进行绑定

recyclerView = (RecyclerView) findViewById(R.id.my_recycler_view);
        // 创建RecyclerView对象
        
        VirtualLayoutManager layoutManager = new VirtualLayoutManager(this);
        // 创建VirtualLayoutManager对象
        // 同时内部会创建一个LayoutHelperFinder对象,用来后续的LayoutHelper查找

        recyclerView.setLayoutManager(layoutManager);
        // 将VirtualLayoutManager绑定到recyclerView

步骤2:设置回收复用池大小

如果一屏内相同类型的 View 个数比较多,需要设置一个合适的大小,防止来回滚动时重新创建 View)

// 设置组件复用回收池
        RecyclerView.RecycledViewPool viewPool = new RecyclerView.RecycledViewPool();
        recyclerView.setRecycledViewPool(viewPool);
        viewPool.setMaxRecycledViews(0, 10);

步骤3:设置Adapter

设置 V - Layout的Adapter有两种方式:

  • 方式1:继承 自 DelegateAdapter
  • 方式2:继承 自 VirtualLayoutAdapter
    下面会进行详细说明:

方式1:继承 自 DelegateAdapter

  • 定义:DelegateAdapter是V - Layout专门为管理 LayoutHelper定制的 Adapter

继承自VirtualLayoutAdapter

  • 作用:通过管理不同布局的Adapter,继而管理不同的 LayoutHelper,从而实现使用不同组合布局
  1. 特别注意:虽不可直接绑定LayoutHelper,但是它内部有一个继承自RecyclerView.Adapter的内部类Adapter可以绑定LayoutHelper;
  2. 即通过一个List把绑定好的Adapter打包起来,再放去DelegateAdapter,这样就可以实现组合使用不同的布局
  • 具体做法:
  1. 写法与复写系统自带的Adapter非常类似:只比系统自带的RecyclerAdapter需要多重载onCreateLayoutHelper方法,其余类似
  2. 关于Android系统自带的RecyclerAdapter的使用具体请看我写的文章Android开发:ListView、AdapterView、RecyclerView全面解析
public class MyAdapter extends DelegateAdapter.Adapter<MyAdapter.MainViewHolder> {

// 比系统自带的RecyclerAdapter需要多重载onCreateLayoutHelper()

    @Override
    public LayoutHelper onCreateLayoutHelper() {
        return layoutHelper;
    }

... // 其余写法与复写系统自带的Adapter相同
}

方式2:继承 自 VirtualLayoutAdapter

  • 定义:当需要实现复杂需求时, 可以通过继承VirtualLayoutAdapter从而实现自定义Adapter

  • 具体使用

public class MyAdapter extends VirtualLayoutAdapter {
   ...// 自定义Adapter逻辑
}

步骤4:根据数据列表,创建对应的LayoutHelper

  • 系统以封装好以下布局类型(对应同名的LayoutHelper)
布局类型
  • 具体使用如下:

1. 线性布局(LinearLayoutHelper)

  • 布局说明:布局子元素(Item)以线性排布的布局
示意图
  • 具体使用
/**
    设置线性布局
       */
        LinearLayoutHelper linearLayoutHelper = new LinearLayoutHelper();
        // 创建对应的LayoutHelper对象

 // 所有布局的公共属性(属性会在下面详细说明)
        linearLayoutHelper.setItemCount(4);// 设置布局里Item个数
        linearLayoutHelper.setPadding(10,10,10,10);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        linearLayoutHelper.setMargin(10,10,10,10);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        linearLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        linearLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

 // linearLayoutHelper特有属性
        linearLayoutHelper.setDividerHeight(1); // 设置每行Item的距离
     

1. 所有布局的共有属性说明:

a. setItemCount属性

  • 作用:设置整个布局里的Item数量

如设置的Item总数如与Adapter的getItemCount()方法返回的数量不同,会取决于后者

示意图
  • 具体使用
// 接口示意
    public void setItemCount(int Count)

// 具体使用
        linearLayoutHelper.setItemCount(4);

b. Adding & Margin属性

  • 定义:都是边距的含义,但二者边距的定义不同:

    1. Padding:是 LayoutHelper 的子元素相对 LayoutHelper 边缘的距离;
    2. Margin:是 LayoutHelper 边缘相对父控件(即RecyclerView)的距离。具体如下图:
      示意图
  • 具体使用

// 接口示意
    public void setPadding(int leftPadding, int topPadding, int rightPadding, int bottomPadding)
    public void setMargin(int leftMargin, int topMargin, int rightMargin, int bottomMargin)

// 具体使用
        linearLayoutHelper.setPadding(10,10,10,10);
        // 设置LayoutHelper的子元素相对LayoutHelper边缘的距离

        linearLayoutHelper.setMargin(10,10,10,10);
        // 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离

c. bgColor属性

  • 作用:设置布局背景颜色
  • 具体使用:
// 接口示意
public void setBgColor(int bgColor)

// 具体使用
linearLayoutHelper.setBgColor(Color.YELLOW);

d. aspectRatio属性

  • 作用:设置布局内每行布局的宽与高的比。如下图
示意图
  • 具体使用
// 接口示意
public void setAspectRatio(float aspectRatio);
// LayoutHelper定义的aspectRatio

((VirutalLayoutManager.LayoutParams) layoutParams).mAspectRatio
// 视图的LayoutParams定义的aspectRatio
// 在LayoutHelper计算出视图宽度之后,用来确定视图高度时使用的,它会覆盖通过LayoutHelper的aspectRatio计算出来的视图高度,因此具备更高优先级。

// 具体使用
        linearLayoutHelper.setAspectRatio(6);
       

2. LinearLayoutHelper布局的特有属性说明

a. dividerHeight属性

  • 作用:设置每行Item之间的距离

设置的间隔会与RecyclerView的addItemDecoration()添加的间隔叠加

示意图
  • 具体使用
// 接口示意
public void setDividerHeight(int dividerHeight)

// 具体使用
 linearLayoutHelper.setDividerHeight(1);


2. 网格布局(GridLayout)

  • 布局说明:布局里的Item以网格的形式进行排列
示意图
  • 具体使用
        /**
        设置Grid布局
        */
        GridLayoutHelper gridLayoutHelper = new GridLayoutHelper(3);
        // 在构造函数设置每行的网格个数

        // 公共属性
        gridLayoutHelper.setItemCount(6);// 设置布局里Item个数
        gridLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        gridLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        gridLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        gridLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

        // gridLayoutHelper特有属性(下面会详细说明)
        gridLayoutHelper.setWeights(new float[]{40, 30, 30});//设置每行中 每个网格宽度 占 每行总宽度 的比例
        gridLayoutHelper.setVGap(20);// 控制子元素之间的垂直间距
        gridLayoutHelper.setHGap(20);// 控制子元素之间的水平间距
        gridLayoutHelper.setAutoExpand(false);//是否自动填充空白区域
        gridLayoutHelper.setSpanCount(3);// 设置每行多少个网格
        // 通过自定义SpanSizeLookup来控制某个Item的占网格个数
        gridLayoutHelper.setSpanSizeLookup(new GridLayoutHelper.SpanSizeLookup() {
            @Override
            public int getSpanSize(int position) {
                if (position > 7 ) {
                    return 3;
                    // 第7个位置后,每个Item占3个网格
                }else {
                    return 2;
                    // 第7个位置前,每个Item占2个网格
                }
            }
        });

GridLayoutHelper布局的特有属性说明

a. weights属性

  • 作用:设置每行中每个网格宽度占每行总宽度的比例
  1. 默认情况下,每行中每个网格中的宽度相等
  2. weights属性是一个float数组,每一项代表当个网格占每行总宽度的百分比;总和是100,否则布局会超出容器宽度;
  3. 如果布局中有4列,那么weights的长度也应该是4;长度大于4,多出的部分不参与宽度计算;如果小于4,不足的部分默认平分剩余的空间。
示意图
  • 具体使用
// 接口示意
public void setWeights(float[] weights)

// 具体使用
gridLayoutHelper.setWeights(new float[]{40, 30, 30});

b. vGap、hGap属性

  • 作用:分别控制子元素之间的垂直间距 和 水平间距。
示意图
  • 具体使用
// 接口示意
    public void setHGap(int hGap)
    public void setVGap(int vGap)

// 具体使用
    gridLayoutHelper.setVGap(20);// 控制子元素之间的垂直间距
    gridLayoutHelper.setHGap(20);// 控制子元素之间的水平间距

c. spanCount、spanSizeLookup属性

  • 作用:
    1. spanCount:设置每行多少个网格
    2. spanSizeLookup:设置每个 Item占用多少个网格(默认= 1)
示意图
  • 具体使用
// 接口示意
public void setSpanCount(int spanCount)
public void setSpanSizeLookup(SpanSizeLookup spanSizeLookup)

// 具体使用
        gridLayoutHelper.setSpanCount(5);// 设置每行多少个网格

        // 通过自定义SpanSizeLookup来控制某个Item的占网格个数
        gridLayoutHelper.setSpanSizeLookup(new GridLayoutHelper.SpanSizeLookup() {
            @Override
            public int getSpanSize(int position) {
                if (position > 7 ) {
                    return 3;
                    // 第7个位置后,每个Item占3个网格
                }else {
                    return 2;
                    // 第7个位置前,每个Item占2个网格
                }
            }
        });

d. autoExpand属性

  • 作用:当一行里item的个数 < (每行网格列数 - spanCount值/ 每个Item占有2个网格-setSpanSizeLookup )时,是否自动填满空白区域
  1. 若autoExpand=true,那么视图的总宽度会填满可用区域;
  2. 否则会在屏幕上留空白区域。
示意图
  • 具体使用
// 接口示意
public void setAutoExpand(boolean isAutoExpand)

// 具体使用
gridLayoutHelper.setAutoExpand(false);

3. 固定布局(FixLayoutHelper)

  • 布局说明:布局里的Item 固定位置

固定在屏幕某个位置,且不可拖拽 & 不随页面滚动而滚动。如下图:(左上角)

固定布局
  • 具体使用
/**
         设置固定布局
         */

        FixLayoutHelper fixLayoutHelper = new FixLayoutHelper(FixLayoutHelper.TOP_LEFT,40,100);
        // 参数说明:
        // 参数1:设置吸边时的基准位置(alignType) - 有四个取值:TOP_LEFT(默认), TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT
        // 参数2:基准位置的偏移量x
        // 参数3:基准位置的偏移量y


        // 公共属性
        fixLayoutHelper.setItemCount(1);// 设置布局里Item个数
        // 从设置Item数目的源码可以看出,一个FixLayoutHelper只能设置一个
//        @Override
//        public void setItemCount(int itemCount) {
//            if (itemCount > 0) {
//                super.setItemCount(1);
//            } else {
//                super.setItemCount(0);
//            }
//        }
        fixLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        fixLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        fixLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        fixLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

        // fixLayoutHelper特有属性
        fixLayoutHelper.setAlignType(FixLayoutHelper.TOP_LEFT);// 设置吸边时的基准位置(alignType)
        fixLayoutHelper.setX(30);// 设置基准位置的横向偏移量X
        fixLayoutHelper.setY(50);// 设置基准位置的纵向偏移量Y

FixLayoutHelper特有属性说明

a. AlignType、x、y属性

  • 作用:
    1. alignType:吸边基准类型

    共有4个取值:TOP_LEFT(默认), TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT,具体请看下面示意图

    1. x:基准位置的横向偏移量
    2. y:基准位置的纵向偏移量
示意图
  • 作用对象:FixLayoutHelper, ScrollFixLayoutHelper, FloatLayoutHelper的属性
// 接口示意
public void setAlignType(int alignType)
public void setX(int x)
public void setY(int y)

// 具体使用
fixLayoutHelper.setAlignType(FixLayoutHelper.TOP_LEFT);
fixLayoutHelper.setX(30);
fixLayoutHelper.setY(50);

4. 可选显示的固定布局(ScrollFixLayoutHelper)

  • 布局说明:布局里的Item 固定位置
  1. 固定在屏幕某个位置,且不可拖拽 & 不随页面滚动而滚动(继承自固定布局(FixLayoutHelper))
  2. 唯一不同的是,可以自由设置该Item什么时候显示(到顶部显示 / 到底部显示),可如下图:(左上角)
  3. 需求场景:到页面底部显示”一键到顶部“的按钮功能

以下示意图为:滑动到底部,布局才在左上角显示

滑动到底部才在左上角显示
  • 具体使用
/**
         设置可选固定布局
         */

        ScrollFixLayoutHelper scrollFixLayoutHelper = new ScrollFixLayoutHelper(ScrollFixLayoutHelper.TOP_RIGHT,0,0);
        // 参数说明:
        // 参数1:设置吸边时的基准位置(alignType) - 有四个取值:TOP_LEFT(默认), TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT
        // 参数2:基准位置的偏移量x
        // 参数3:基准位置的偏移量y

        // 公共属性
        scrollFixLayoutHelper.setItemCount(1);// 设置布局里Item个数
        // 从设置Item数目的源码可以看出,一个FixLayoutHelper只能设置一个
//        @Override
//        public void setItemCount(int itemCount) {
//            if (itemCount > 0) {
//                super.setItemCount(1);
//            } else {
//                super.setItemCount(0);
//            }
//        }
        scrollFixLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        scrollFixLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        scrollFixLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        scrollFixLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

        // fixLayoutHelper特有属性
     scrollFixLayoutHelper.setAlignType(FixLayoutHelper.TOP_LEFT);// 设置吸边时的基准位置(alignType)
        scrollFixLayoutHelper.setX(30);// 设置基准位置的横向偏移量X
        scrollFixLayoutHelper.setY(50);// 设置基准位置的纵向偏移量Y
        scrollFixLayoutHelper.setShowType(ScrollFixLayoutHelper.SHOW_ON_ENTER);// 设置Item的显示模式

ScrollFixLayoutHelper特有属性说明

a. AlignType、x、y属性

  • 作用:
    1. alignType:吸边基准类型

    共有4个取值:TOP_LEFT(默认), TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT,具体请看下面示意图

    1. x:基准位置的横向偏移量
    2. y:基准位置的纵向偏移量
示意图
  • 具体使用
// 接口示意
public void setAlignType(int alignType)
public void setX(int x)
public void setY(int y)

// 具体使用
ScrollFixLayoutHelper.setAlignType(FixLayoutHelper.TOP_LEFT);
ScrollFixLayoutHelper.setX(30);
ScrollFixLayoutHelper.setY(50);

b. ShowType属性

  • 作用:设置Item的显示模式

共有三种显示模式

  1. SHOW_ALWAYS:永远显示(即效果同固定布局)
  2. SHOW_ON_ENTER:默认不显示视图,当页面滚动到该视图位置时才显示;
  3. SHOW_ON_LEAVE:默认不显示视图,当页面滚出该视图位置时才显示
  • 具体使用
// 接口示意
public void setShowType(int showType)

// 具体使用
scrollFixLayoutHelper.setShowType(ScrollFixLayoutHelper.SHOW_ON_ENTER);

5. 浮动布局(FloatLayoutHelper)

  • 布局说明:布局里的Item只有一个
  1. 可随意拖动,但最终会被吸边到两侧
  2. 不随页面滚动而移动
示意图
  • 具体使用
/**
         设置浮动布局
         */
        FloatLayoutHelper floatLayoutHelper = new FloatLayoutHelper();
        // 创建FloatLayoutHelper对象

        // 公共属性
        floatLayoutHelper.setItemCount(1);// 设置布局里Item个数
        // 从设置Item数目的源码可以看出,一个FixLayoutHelper只能设置一个
//        @Override
//        public void setItemCount(int itemCount) {
//            if (itemCount > 0) {
//                super.setItemCount(1);
//            } else {
//                super.setItemCount(0);
//            }
//        }
        floatLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        floatLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        floatLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        floatLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

        // floatLayoutHelper特有属性
        floatLayoutHelper.setDefaultLocation(300,300);// 设置布局里Item的初始位置

        

6. 栏格布局(ColumnLayoutHelper)

  • 布局说明:该布局只设有一栏(该栏设置多个Item)

可理解为只有一行的线性布局

示意图
/**
         设置栏格布局
         */
        ColumnLayoutHelper columnLayoutHelper = new ColumnLayoutHelper();
        // 创建对象

        // 公共属性
        columnLayoutHelper.setItemCount(3);// 设置布局里Item个数
        columnLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        columnLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        columnLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        columnLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

        // columnLayoutHelper特有属性
        columnLayoutHelper.setWeights(new float[]{30, 40, 30});// 设置该行每个Item占该行总宽度的比例
        // 同上面Weigths属性讲解


7. 通栏布局(SingleLayoutHelper)

  • 布局说明:布局只有一栏,该栏只有一个Item
示意图
  • 具体使用
/**
         设置通栏布局
         */

        SingleLayoutHelper singleLayoutHelper = new SingleLayoutHelper();

        // 公共属性
        singleLayoutHelper.setItemCount(3);// 设置布局里Item个数
        singleLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        singleLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        singleLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        singleLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比
        


8. 一拖N布局 (OnePlusNLayoutHelper)

  • 布局说明:将布局分为不同比例,最多是1拖4。具体如下图
示意图1 示意图2
  • 具体使用
/**
         设置1拖N布局
         */
        OnePlusNLayoutHelper onePlusNLayoutHelper = new OnePlusNLayoutHelper(5);
        // 在构造函数里传入显示的Item数
        // 最多是1拖4,即5个

        // 公共属性
        onePlusNLayoutHelper.setItemCount(3);// 设置布局里Item个数
        onePlusNLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        onePlusNLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        onePlusNLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        onePlusNLayoutHelper.setAspectRatio(3);// 设置设置布局内每行布局的宽与高的比


9. 吸边布局(StickyLayoutHelper)

  • 布局说明:布局只有一个Item,显示逻辑如下:

    1. 当它包含的组件处于屏幕可见范围内时,像正常的组件一样随页面滚动而滚动
    2. 当组件将要被滑出屏幕返回的时候,可以吸到屏幕的顶部或者底部,实现一种吸住的效果
  • 示意图(吸在顶部)

示意图
  • 具体使用
        /**
         设置吸边布局
         */
        StickyLayoutHelper stickyLayoutHelper = new StickyLayoutHelper();

        // 公共属性
        stickyLayoutHelper.setItemCount(3);// 设置布局里Item个数
        stickyLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        stickyLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        stickyLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        stickyLayoutHelper.setAspectRatio(3);// 设置设置布局内每行布局的宽与高的比

        // 特有属性
        stickyLayoutHelper.setStickyStart(true);
        // true = 组件吸在顶部
        // false = 组件吸在底部

        stickyLayoutHelper.setOffset(100);// 设置吸边位置的偏移量

        Adapter_StickyLayout = new MyAdapter(this, stickyLayoutHelper,1, listItem) {
            // 设置需要展示的数据总数,此处设置是1
            // 为了展示效果,通过重写onBindViewHolder()将布局的第一个数据设置为Stick
            @Override
            public void onBindViewHolder(MainViewHolder holder, int position) {
                super.onBindViewHolder(holder, position);
                if (position == 0) {
                    holder.Text.setText("Stick");
                }
            }
        };

        adapters.add(Adapter_StickyLayout) ;
        // 将当前的Adapter加入到Adapter列表里

stickyStart、 offset属性说明

  • 作用:

    1. stickyStart:设置吸边位置

    当视图的位置在屏幕范围内时,视图会随页面滚动而滚动;当视图的位置滑出屏幕时,StickyLayoutHelper会将视图固定在顶部(stickyStart = true)或 底部(stickyStart = false)

    1. offset:设置吸边的偏移量
  • 具体使用

// 接口示意
        public void setStickyStart(boolean stickyStart)
        public void setOffset(int offset)

// 具体使用
        stickyLayoutHelper.setStickyStart(true);
        // true = 组件吸在顶部
        // false = 组件吸在底部
        stickyLayoutHelper.setOffset(100);// 设置吸边位置的偏移量

10. 瀑布流布局(StaggeredGridLayoutHelper)

  • 布局说明:以网格的形式进行布局。与网格布局类似,区别在于:
    • 网格布局每栏的Item高度是相等的;
    • 瀑布流布局每栏的Item高度是可以不相等的。
示意图
  • 具体使用

        /**
         设置瀑布流布局
         */

        StaggeredGridLayoutHelper staggeredGridLayoutHelper = new StaggeredGridLayoutHelper();
        // 创建对象

        // 公有属性
        staggeredGridLayoutHelper.setItemCount(20);// 设置布局里Item个数
        staggeredGridLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        staggeredGridLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        staggeredGridLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        staggeredGridLayoutHelper.setAspectRatio(3);// 设置设置布局内每行布局的宽与高的比

        // 特有属性
        staggeredGridLayoutHelper.setLane(3);// 设置控制瀑布流每行的Item数
        staggeredGridLayoutHelper.setHGap(20);// 设置子元素之间的水平间距
        staggeredGridLayoutHelper.setVGap(15);// 设置子元素之间的垂直间距

       

自定义布局(即自定义LayoutHelper)

除了使用系统提供的默认布局 LayoutHelper,开发者还可以通过自定义LayoutHelper从而实现自定义布局样式。有三种方式:

  1. 继承BaseLayoutHelper:从上而下排列的顺序 & 内部 View可以按行回收的布局;主要实现layoutViews()computeAlignOffset()等方法

LinearLayoutHelperGridLayoutHelper都是采用该方法实现

  1. 继承AbstractFullFillLayoutHelper:有些布局内部的 View 并不是从上至下排列的顺序(即 Adatper 里的数据顺序和物理视图顺序不一致,那么可能就不能按数据顺序布局和回收),需要一次性布局
    & 回收。主要实现layoutViews()等方法

OnePlusNLayoutHelper采用该方法实现

  1. 继承FixAreaLayoutHelperfix 类型布局,子节点不随页面滚动而滚动。主要实现layoutViews()beforeLayout()afterLayout()等方法

FixLayoutHelper采用该方法实现


步骤5:将生成的LayoutHelper 交给Adapter,并绑定到RecyclerView 对象

此处的做法会因步骤3中Adapter的设置而有所不同

<-- Adapter继承 自 DelegateAdapter -->

// 步骤1:设置Adapter列表(同时也是设置LayoutHelper列表)
        List<DelegateAdapter.Adapter> adapters = new LinkedList<>();

// 步骤2:创建自定义的Adapter对象 & 绑定数据 & 绑定上述对应的LayoutHelper
// 绑定你需要展示的布局LayoutHelper即可,此处仅展示两个。
        MyAdapter Adapter_linearLayout    = new MyAdapter(this, linearLayoutHelper,ListItem);
// ListItem是需要绑定的数据(其实取决于你的Adapter如何定义)

        MyAdapter Adapter_gridLayoutHelper    = new MyAdapter(this, gridLayoutHelper,ListItem);

// 步骤3:将创建的Adapter对象放入到DelegateAdapter.Adapter列表里
        adapters.add(Adapter_linearLayout ) ;
        adapters.add(Adapter_gridLayoutHelper ) ;

// 步骤4:创建DelegateAdapter对象 & 将layoutManager绑定到DelegateAdapter
DelegateAdapter delegateAdapter = new DelegateAdapter(layoutManager);

// 步骤5:将DelegateAdapter.Adapter列表绑定到DelegateAdapter
 delegateAdapter.setAdapters(adapters);

// 步骤6:将delegateAdapter绑定到recyclerView
recyclerView.setAdapter(delegateAdapter);



<-- Adapter继承 自 VirtualLayoutAdapter -->

// 步骤1:设置LayoutHelper列表
        List<LayoutHelper> helpers = new LinkedList<>();

// 步骤2:绑定上述对应的LayoutHelper
helpers.add(Adapter_linearLayout );
helpers.add(Adapter_gridLayoutHelper ) ;

// 步骤3:创建自定义的MyAdapter对象 & 绑定layoutManager
MyAdapter myAdapter = new MyAdapter(layoutManager);

// 步骤4:将 layoutHelper 列表传递给 adapter
myAdapter.setLayoutHelpers(helpers);

// 步骤5:将adapter绑定到recyclerView
recycler.setAdapter(myAdapter);

至此,使用过程讲解完毕。


6. 实例说明

  • V-Layout的优点在于快速的组合不同布局
  • 下面,我将根据上面的步骤说明,用一个实例来使用 V - Layout快速组合布局

步骤1:在Android - Gradle加入依赖

compile ('com.alibaba.android:vlayout:1.0.3@aar') {
        transitive = true
    }

步骤2:定义主 xml布局

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="scut.carson_ho.v_layoutusage.MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/my_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="horizontal" />
</RelativeLayout>

步骤3:定义 RecyclerView每个子元素( Item )的xml布局

item.xml

此处定义的 Item 布局是常用的 上字下图

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="New Text"
        android:id="@+id/Item" />

    <ImageView
        android:layout_alignParentRight="true"
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/Image"/>

</LinearLayout>

步骤4:设置Adapter

  • 设置 V - Layout的Adapter有两种方式:
    1. 继承 自 DelegateAdapter

此处主要以该方式进行演示

  1. 继承 自 VirtualLayoutAdapter
  • 具体使用

MyAdapter.java

public class MyAdapter extends DelegateAdapter.Adapter<MyAdapter.MainViewHolder> {
    // 使用DelegateAdapter首先就是要自定义一个它的内部类Adapter,让LayoutHelper和需要绑定的数据传进去
    // 此处的Adapter和普通RecyclerView定义的Adapter只相差了一个onCreateLayoutHelper()方法,其他的都是一样的做法.

    private ArrayList<HashMap<String, Object>> listItem;
    // 用于存放数据列表

    private Context context;
    private LayoutHelper layoutHelper;
    private RecyclerView.LayoutParams layoutParams;
    private int count = 0;

    private MyItemClickListener myItemClickListener;
    // 用于设置Item点击事件

    //构造函数(传入每个的数据列表 & 展示的Item数量)
    public MyAdapter(Context context, LayoutHelper layoutHelper, int count, ArrayList<HashMap<String, Object>> listItem) {
        this(context, layoutHelper, count, new RecyclerView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, 300), listItem);
    }

    public MyAdapter(Context context, LayoutHelper layoutHelper, int count, @NonNull RecyclerView.LayoutParams layoutParams, ArrayList<HashMap<String, Object>> listItem) {
        this.context = context;
        this.layoutHelper = layoutHelper;
        this.count = count;
        this.layoutParams = layoutParams;
        this.listItem = listItem;
    }

    // 把ViewHolder绑定Item的布局
    @Override
    public MainViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        return new MainViewHolder(LayoutInflater.from(context).inflate(R.layout.item, parent, false));
    }

    // 此处的Adapter和普通RecyclerView定义的Adapter只相差了一个onCreateLayoutHelper()方法
    @Override
    public LayoutHelper onCreateLayoutHelper() {
        return layoutHelper;
    }

    // 绑定Item的数据
    @Override
    public void onBindViewHolder(MainViewHolder holder, int position) {
        holder.Text.setText((String) listItem.get(position).get("ItemTitle"));
        holder.image.setImageResource((Integer) listItem.get(position).get("ItemImage"));

    }

    // 返回Item数目
    @Override
    public int getItemCount() {
        return count;
    }

    // 设置Item的点击事件
    // 绑定MainActivity传进来的点击监听器
    public void setOnItemClickListener(MyItemClickListener listener) {
        myItemClickListener = listener;
    }

    
    //定义Viewholder
    class MainViewHolder extends RecyclerView.ViewHolder {
        public TextView Text;
        public ImageView image;

        public MainViewHolder(View root) {
            super(root);
            
            // 绑定视图
            Text = (TextView) root.findViewById(R.id.Item);
            image = (ImageView) root.findViewById(R.id.Image);

            root.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    if (myItemClickListener != null)
                        myItemClickListener.onItemClick(v, getPosition());
                }

            }
            //监听到点击就回调MainActivity的onItemClick函数
            );

        }

        public TextView getText() {
            return Text;
        }
    }
}

以下步骤都将写在同一个.Java文件里

步骤5:创建RecyclerView & VirtualLayoutManager 对象并进行绑定
步骤6:设置回收复用池大小
步骤7:设置需要存放的数据
步骤8:根据数据列表,创建对应的LayoutHelper
步骤9:将生成的LayoutHelper 交给Adapter,并绑定到RecyclerView 对象

详细请看注释

MainActivity.java

public class MainActivity extends AppCompatActivity implements MyItemClickListener {
    RecyclerView recyclerView;
    MyAdapter Adapter_linearLayout,Adapter_GridLayout,Adapter_FixLayout,Adapter_ScrollFixLayout
            ,Adapter_FloatLayout,Adapter_ColumnLayout,Adapter_SingleLayout,Adapter_onePlusNLayout,
            Adapter_StickyLayout,Adapter_StaggeredGridLayout;
    private ArrayList<HashMap<String, Object>> listItem;

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

        /**
         * 步骤1:创建RecyclerView & VirtualLayoutManager 对象并进行绑定
         * */
        recyclerView = (RecyclerView) findViewById(R.id.my_recycler_view);
        // 创建RecyclerView对象

        VirtualLayoutManager layoutManager = new VirtualLayoutManager(this);
        // 创建VirtualLayoutManager对象
        // 同时内部会创建一个LayoutHelperFinder对象,用来后续的LayoutHelper查找

        recyclerView.setLayoutManager(layoutManager);
        // 将VirtualLayoutManager绑定到recyclerView

        /**
         * 步骤2:设置组件复用回收池
         * */
        RecyclerView.RecycledViewPool viewPool = new RecyclerView.RecycledViewPool();
        recyclerView.setRecycledViewPool(viewPool);
        viewPool.setMaxRecycledViews(0, 10);

        /**
         * 步骤3:设置需要存放的数据
         * */
        listItem = new ArrayList<HashMap<String, Object>>();
        for (int i = 0; i < 100; i++) {
            HashMap<String, Object> map = new HashMap<String, Object>();
            map.put("ItemTitle", "第" + i + "行");
            map.put("ItemImage", R.mipmap.ic_launcher);
            listItem.add(map);

        }

        /**
         * 步骤4:根据数据列表,创建对应的LayoutHelper
         * */

        // 为了展示效果,此处将上面介绍的所有布局都显示出来

        /**
         设置线性布局
         */
        LinearLayoutHelper linearLayoutHelper = new LinearLayoutHelper();
        // 创建对应的LayoutHelper对象

        // 公共属性
        linearLayoutHelper.setItemCount(4);// 设置布局里Item个数
        linearLayoutHelper.setPadding(20, 20, 20, 20);// 设置LayoutHelper的子元素相对LayoutHelper边缘的距离
        linearLayoutHelper.setMargin(20, 20, 20, 20);// 设置LayoutHelper边缘相对父控件(即RecyclerView)的距离
        // linearLayoutHelper.setBgColor(Color.GRAY);// 设置背景颜色
        linearLayoutHelper.setAspectRatio(6);// 设置设置布局内每行布局的宽与高的比

        // linearLayoutHelper特有属性
        linearLayoutHelper.setDividerHeight(10);
        // 设置间隔高度
        // 设置的间隔会与RecyclerView的addItemDecoration()添加的间隔叠加.

        linearLayoutHelper.setMarginBottom(100);
        // 设置布局底部与下个布局的间隔


        // 创建自定义的Adapter对象 & 绑定数据 & 绑定对应的LayoutHelper进行布局绘制
         Adapter_linearLayout  = new MyAdapter(this, linearLayoutHelper, 4, listItem) {
             // 参数2:绑定绑定对应的LayoutHelper
             // 参数3:传入该布局需要显示的数据个数
             // 参数4:传入需要绑定的数据

             // 通过重写onBindViewHolder()设置更丰富的布局效果
             @Override
             public void onBindViewHolder(MainViewHolder holder, int position) {
                 super.onBindViewHolder(holder, position);
                 // 为了展示效果,将布局的第一个数据设置为linearLayout
                 if (position == 0) {
                     holder.Text.setText("Linear");
                 }

                  //为了展示效果,将布局里不同位置的Item进行背景颜色设置
                 if (position < 2) {
                     holder.itemView.setBackgroundColor(0x66cc0000 + (position - 6) * 128);
                 } else if (position % 2 == 0) {
                     holder.itemView.setBackgroundColor(0xaa22ff22);
                 } else {
                     holder.itemView.setBackgroundColor(0xccff22ff);
                 }

             }
         };

        Adapter_linearLayout.setOnItemClickListener(this);
        // 设置每个Item的点击事件

        ....// 还有其他布局,由于代码量就较多就不贴出来了。

        /**
         *步骤5:将生成的LayoutHelper 交给Adapter,并绑定到RecyclerView 对象
         **/

        // 1. 设置Adapter列表(同时也是设置LayoutHelper列表)
        List<DelegateAdapter.Adapter> adapters = new LinkedList<>();

        // 2. 将上述创建的Adapter对象放入到DelegateAdapter.Adapter列表里
        adapters.add(Adapter_linearLayout) ;
        adapters.add(Adapter_StickyLayout) ;
        adapters.add(Adapter_ScrollFixLayout) ;
        adapters.add(Adapter_GridLayout) ;
        adapters.add(Adapter_FixLayout) ;
        adapters.add(Adapter_FloatLayout) ;
        adapters.add(Adapter_ColumnLayout) ;
        adapters.add(Adapter_SingleLayout) ;
        adapters.add(Adapter_onePlusNLayout) ;
        adapters.add(Adapter_StaggeredGridLayout) ;

        // 3. 创建DelegateAdapter对象 & 将layoutManager绑定到DelegateAdapter
        DelegateAdapter delegateAdapter = new DelegateAdapter(layoutManager);

        // 4. 将DelegateAdapter.Adapter列表绑定到DelegateAdapter
        delegateAdapter.setAdapters(adapters);

        // 5. 将delegateAdapter绑定到recyclerView
        recyclerView.setAdapter(delegateAdapter);


        /**
         *步骤6:Item之间的间隔
         **/

        recyclerView.addItemDecoration(new RecyclerView.ItemDecoration() {
            public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
                outRect.set(5, 5, 5, 5);
            }
        });


    }

    /**
     *步骤7:实现Item点击事件
     **/
    // 点击事件的回调函数
    @Override
    public void onItemClick(View view, int postion) {
        System.out.println("点击了第"+postion+"行");
        Toast.makeText(this, (String) listItem.get(postion).get("ItemTitle"), Toast.LENGTH_SHORT).show();
    }
}

效果图

总效果图

源码地址

Carson_Ho的Github地址:V - Layout

参考文档:
https://github.com/alibaba/vlayout
http://pingguohe.net/2017/02/28/vlayout-design.html


7. 总结

  • 看完本文,你应该非常了解阿里出品的V - Layout 的使用 & 原理
  • 但该开源库还是存在许多小Bug,我在Github上也提交了一些,希望大家能一起在Github - alibaba - vlayout 上进行完善,共同为开源事业做贡献吧!
  • 下面我将继续对 Android 其他优秀的开源库 进行详细分析,有兴趣可以继续关注Carson_Ho的安卓开发笔记

请点赞!因为你的鼓励是我写作的最大动力!

相关文章阅读
Android开发:最全面、最易懂的Android屏幕适配解决方案
Android事件分发机制详解:史上最全面、最易懂
Android开发:史上最全的Android消息推送解决方案
Android开发:最全面、最易懂的Webview详解
Android开发:JSON简介及最全面解析方法!
Android四大组件:Service服务史上最全面解析
Android四大组件:BroadcastReceiver史上最全面解析


欢迎关注Carson_Ho的简书!

不定期分享关于安卓开发的干货,追求短、平、快,但却不缺深度

相关文章

网友评论

  • C喽喽:stickyLayout那么明显的bug没人发现??
  • 浪淘沙xud:关于VLayout和RxBus结合,博主有优雅的方式吗
  • cybkw:我有一个疑问? 数据源不同并且每个Item不同呢 ?怎么展示? 不能换不同的Item 布局文件吗?
  • 波波一起飞:Vlayout你有实现下拉刷新和上拉加载更多了吗?
  • 海风_8e9d:楼主写的非常好也非常用心,看了你这篇文章也会用了,但是vLayout难懂的应该是LayoutHelper,VirtualLayoutManager通过RangeLayoutHelperFinder查找LayoutHelper,LayoutHelper布局组件等等一系列过程感觉很复杂,看了很久都没弄清楚,网上也搜不到相应的分析过程,要是楼主能分享一下这个就好了。
  • Spur2:holder.Text.setText("Linear");这个你们不报错吗
  • b5bb1c8f90a2:那我不同布局要如何加载不同的layout呢
  • Evan_we:怎么利用ViewPropertyAnimator设置vlayout动画呢
  • 海内灬存知己:博主是真牛啊
  • 纯文笔记:谢谢楼主的详细精彩介绍。(文中写的继承自DelegateAdapter,应是继承自 DelegateAdapter.Adapter)
  • 4f18bc005eeb:请问楼主,我什么都写了,也没有报错,但是就是没有显示出来,就做了一个瀑布流
  • Null丶:横向滑动的Recyclerview或者viewpager动态加载
  • Mr_Gao666:太详细了,作者有心了
  • 控尼基哇:感谢楼主的付出,大神就是不一样,流程图都这样流弊,一点也不含糊,要多向你学习
  • 淡入星空:大大,“Android Tangram模型:连淘宝、天猫都在用的UI框架模型你一定要懂” 中提到的卡片的头布局等 有封装的方法吗? 还是自己用singlelayout加上去的?
    另外,感谢大大的文章!
  • v587的毅哥:淘宝天猫都卡成狗屎了已然成为Android跑分软件。我还用它的框架?
  • 4d0565519e3e:good 不同的adapter 是如何写出来的
  • wintersweett:最后的效果 手机上的视频怎么插入博客的呢
  • junl_yaun:在找解决问题的过程中发现,网上所有的资源,((VirutalLayoutManager.LayoutParams) layoutParams).mAspectRatio 中 VirutalLayou这个单词写错,并且错的全部一样,而阿里源代码中这个写作Virtualayout,虽然是一个单词,可以看得出来,各位作者之间是有参考,但是当要深究一个方法是如何调用的时候,通常答案千篇一律都是一样的,而这个时候通常就会发现所有的写法都一样,没有哪个作者有所不同的答案。说了这么多,想说的是在借鉴的同时能不能加上自己的见解。比如aspectRatio的用法,可能是我笨,没看懂,但是网上所有的用法都一样,都只有一句“((VirutalLayoutManager.LayoutParams) layoutParams).mAspectRatio” 然后就没有然后了。最后,不是针对楼主,望谅解,只是这种现象太。。。。
  • xiaojinwei:在设置了 // 5. 将delegateAdapter绑定到recyclerView recyclerView.setAdapter(delegateAdapter);之后,如何动态的增加删除某些adapter啊,我使用了mDelegateAdapter.removeAdapter(mAdapter);直接报错,说adapter转换异常,请大神赐教
  • 布谷鸟也会编程:当数据源发生改变(数量减少了)时怎么调用notifyDataSetChanged(),会出现越界错误啊?
  • 37d5fc52de9e:感谢大神辛苦分享.文中的流程图看不清楚.能否提供一份清除的呢?
    Carson带你学安卓:请在PC端打开 & 放大就好了~
  • 丘处机:如果adapters里面 我有一个adapter想动态的显示隐藏 该怎么办
  • 阿木马克:赞赏支持一下:smile:
  • 盗梦如画:楼主,不同item的adapter我写的不同, 滑动的时候 出现卡顿,还有一托N 出现复用出错的问题, 请问下有交流群没有
  • hudafei:想问楼主 刷新和加载更多需要自己二次封装吗
    ania:@Whale_Alice 刷新可以用swiperefreshlayout,加载自己封装下
  • dabf8e02a0f4:谢谢分享,好人一生平安:pray:
  • A_si:如果布局不一样,就不行啊。你试过吗?如果多个布局,每个不一样。比如上面是一个图片一个文字的布局,下面一个button的布局。
  • 戴定康:越来越佩服你了
  • 1d0e5516138e:辛苦作者了
  • 笔墨Android:楼主请教一个问题,这些布局必须都一样吗?如果条目的展现形式不一样怎么弄。。。
    笔墨Android:楼主方便留个QQ吗 ? 和你探讨一下呗
    笔墨Android:好的 谢谢楼主 去看看 最近研究这个呢 谢谢
    Carson带你学安卓:@Angle0o 布局可以不一样的~Demo展示不就是组合了不同布局么
  • f41b2a53e251:这些功能普通的layoutmanager不就支持吗?在adapter中设置不同的类型不就可以了吗?
    ania:@泡网编辑 个人觉得这样adapter中会耦合性很高,而且vlayout可以跨布局复用
  • fancker:希望Android越来越好
  • 8f4e8af1e4ef:你好,你写的文章非常好,我想参考你的文章写一篇社内的wiki,请问我可以使用你类图,不可以的话,我就自己画。。。:joy:
    8f4e8af1e4ef:@Carson_Ho 谢啦~ 这篇文章很赞哦~
    Carson带你学安卓: @peen_cici 这个没关系的
  • 路途等待:你好,我请教一个问题,用这个控件能加上刷新和加载更多么
    路途等待:@Carson_Ho 我用SwipeRefreshLayout加了下拉刷新不能用
    Carson带你学安卓: @路途等待 必须可以的
  • d3b602e70cc9:HORIZONTAL_SCROLL_LAYOUT 横向线性布局
    d3b602e70cc9:LinearLayoutManager里 的public void setOrientation(int orientation) {
    if (orientation != HORIZONTAL && orientation != VERTICAL) {
    throw new IllegalArgumentException("invalid orientation:" + orientation);
    }
    assertNotInLayoutOrScroll(null);
    if (orientation == mOrientation) {
    return;
    }
    mOrientation = orientation;
    mOrientationHelper = null;
    requestLayout();
    }
    怎么拿来用呢...额
  • d3b602e70cc9:/**
    *步骤7:实现Item点击事件
    **/
    // 点击事件的回调函数
    @Override
    public void onItemClick(View view, int postion)
    这个点击事件监听的是针对recycleview里面item的吧,有点迷糊,不知道recycleview里面各个不同adapter的item自己添加点击事件和这个使用有什么不同。
    d3b602e70cc9:@Carson_Ho 谢谢告知。一会试试。
    Carson带你学安卓:@kangjinwen 这个框架是基于recycleview的,所以点击事件的设置是和recycleview一样的
  • 3de07ae2c7d9:V-Layout的流程图是用什么工具画的?
    Carson带你学安卓: @王丹_db4a win下的画图啊。。。
    3de07ae2c7d9:@Carson_Ho 哪个工具呢?
    Carson带你学安卓:@王丹_db4a 系统自带画图工具
  • 木木仨儿:干货,赞
  • Xdjm:想问一下,UML类图是通过As导出来的,还是博主自己通过软件画的呢?
    04b5fead1fdc:想问下 具体是什么工具画出来的 正需要流程图制作工作
    Carson带你学安卓:@C春和景明C 系统自带画图工具
    Carson带你学安卓:@C春和景明C 自己画的。。。AS哪有这么智能。。。
  • Hi_Felix:这个库非常赞的地方在于,与约束布局完美结合!!!!!!!
  • jxnk25:👍,楼主,可否转载到个人公众号?
  • cornflower10:请问下你的画图工具用的是啥
  • 4d0bd9bc6a4c:厉害炸了
  • 老实李:这篇文章写下来真的工作量感觉好大啊。。。
  • 200ba7b7e6ac:果断收藏
  • uncochen:好长时间没看到这样的好文章了,谢谢作者
  • jitash:请教下楼主,横向线性布局的怎么写啊?
    d3b602e70cc9:HORIZONTAL_SCROLL_LAYOUT 没写出来...想用...
  • 042a0e1be73f:然而淘宝是最卡的安卓App之一(我用过最卡的)
    635a1473907f:IOS秒开:smile:
    justZero: @iOSwift 淘宝其实是尽多大努力让自己不卡。但是没办法
    uncochen: @iOSwift 淘宝承载的东西太多了没办法
  • risemoon:厉害了 非常详细
  • 睿丶清:谢谢作者的分享 受教了
  • 李奥瑞克王:好文谢分享

本文标题:Android开源库V - Layout:淘宝、天猫都在用的UI

本文链接:https://www.haomeiwen.com/subject/pmndottx.html