Skip to content

An android library to show how to make staggered views using recycler view

Notifications You must be signed in to change notification settings

TecOrb-Developers/StaggeredGridView

 
 

Repository files navigation

StaggeredGridView

A RecyclerView that lays out children in a staggered grid formation.

StaggeredGridView StaggeredGridView StaggeredGridView StaggeredGridView

To make a StaggeredGridView, add this StaggeredGridView library to your project and add StaggeredGridView in your layout XML. You can also grab it via Gradle:

Gradle

Step 1. Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

dependencies {
	implementation 'com.github.devta-D:StaggeredGridView:v1.0'
}

Usage


###XML

    <devta.staggeredview.StaggeredGridView
        android:id="@+id/staggeredGridView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

###java

  StaggeredGridView staggeredGridView = findViewById(R.id.staggeredGridView);

  List<StaggeredData> staggeredDataList = new ArrayList<>();

  staggeredDataList.add(new StaggeredData(0, "Men", "image_url"));
  staggeredDataList.add(new StaggeredData(1, "Women", "image_url"));
  staggeredDataList.add(new StaggeredData(2, "Kids", "image_url"));
  staggeredDataList.add(new StaggeredData(3, "Home", "image_url"));
  staggeredDataList.add(new StaggeredData(4, "Gadgets", "image_url"));
  staggeredDataList.add(new StaggeredData(5, "Beauty", "image_url"));

  staggeredGridView.setData(staggeredDataList);
  staggeredGridView.setClickListener(this);

NOTE

To catch StaggeredGridView item click listener implement StaggeredItemClickListener into your Activity/Fragment as following:

AppCompatActivity implements StaggeredItemClickListener{

    @Override
    public void onStaggeredItemClick(StaggeredData item) {
        //perform your action here
    }

Methods:

You may use the following methods in your code to customize your StaggeredGridView.

*staggeredGridView.setViewDimensions(min, max); By using above method you can set staggered view minimum and maximum height and the total of both should be 100.

*staggeredGridView.setViewMaxWidthInDP(getRandomInt()); By using above method you can set maximum width for staggered view.

Developed By

Divyanshu Tayal Follow me on LinkedIn

TecOrb Technologies

About

An android library to show how to make staggered views using recycler view

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%