From c1b7fcfb84b96e610669798f3c1c3d6849460d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=AC=E5=AD=A3=E7=A9=BF=E7=9F=AD=E8=A3=A4?= <714081644@qq.com> Date: Sun, 31 Oct 2021 19:45:18 +0800 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 58184e8..fd9d380 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,16 @@ allprojects { ``` ### 添加依赖 [![](https://jitpack.io/v/shenbengit/PagerGridLayoutManager.svg)](https://jitpack.io/#shenbengit/PagerGridLayoutManager) [change log](https://github.com/shenbengit/PagerGridLayoutManager/blob/master/CHANGE%20LOG.md) -> 在您引入项目的build.gradle中添加 +> 从v1.1.0版本开始,水平滑动排列方式改为先从左到右,再从上到下;若您需要水平滑动排列方式改为先从上到下,再从左到右的方式,请查看分支[1.0.x](https://github.com/shenbengit/PagerGridLayoutManager/tree/1.0.x); +> 在您引入项目的build.gradle中添加: ```gradle dependencies { + //水平排列方式:先从上到下,再从左到右。最终版本。 + //Horizontal arrangement: from top to bottom, then from left to right. Final version. + implementation 'com.github.shenbengit:PagerGridLayoutManager:1.0.5' + //或者 or + //水平排列方式:先从左到右,再从上到下。最新版本。 + //Horizontal arrangement: from left to right, then from top to bottom. Latest version. implementation 'com.github.shenbengit:PagerGridLayoutManager:Tag' } ```