1 Star 0 Fork 0

OSCHINA-MIRROR/mengpeng920223-RecyclerView-Gallery

Join Gitlife
Discover and participate in excellent open source projects with over 10 million developers. Private repositories are also completely free :)
Join for free
This repository does not have a declared open-source license file (LICENSE). Please refer to the specific project description and its code upstream dependencies when using.
Clone/Download
Contribute code
Sync code
Cancel
Hint: Since Git does not support empty folders, creating a folder will generate an empty .keep file.
Loading...
README.md

RecyclerView-Gallery

Галерея, реализованная с помощью RecyclerView. 0 затрат на изучение, быстрая интеграция за 1 минуту.

Эффект:

Способ использования 1:

Шаг 1. Добавьте репозиторий JitPack в свой файл сборки:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Шаг 2. Добавьте зависимость:

dependencies {
    compile 'com.github.mengpeng920223:RecyclerView-Gallery:v1.0.0'
}

Способ использования 2:

Скачайте jar и поместите его в папку lib.

Быстро превратите ваш RecyclerView в галерею:

RecyclerView recyclerView = findViewById(R.id.recyclerView);

// Горизонтальное направление CarouselLayoutManager.HORIZONTAL, вертикальное направление CarouselLayoutManager.VERTICAL
CarouselLayoutManager layoutManager = new CarouselLayoutManager(CarouselLayoutManager.HORIZONTAL);
layoutManager.setPostLayoutListener(new CarouselZoomPostLayoutListener());

recyclerView.setLayoutManager(layoutManager);
recyclerView.setHasFixedSize(true);
recyclerView.addOnScrollListener(new CenterScrollListener());

// Ваш собственный адаптер, в адаптере не требуется никаких изменений
recyclerView.setAdapter(adapter);

Comments ( 0 )

You can comment after Login

Introduction

Cancel

Releases (1)

All

Contributor

All

Recent Activities

Load more
No more results to load
1
https://gitlife.ru/oschina-mirror/mengpeng920223-RecyclerView-Gallery.git
git@gitlife.ru:oschina-mirror/mengpeng920223-RecyclerView-Gallery.git
oschina-mirror
mengpeng920223-RecyclerView-Gallery
mengpeng920223-RecyclerView-Gallery
master