felipecsl / AsymmetricGridView

Android ListView that mimics a GridView with asymmetric items. Supports items with row span and column span
http://felipecsl.com/AsymmetricGridView
MIT License
1.84k stars 431 forks source link

Add support for RecyclerView #26

Open felipecsl opened 9 years ago

mbecker commented 9 years ago

Hi @felipecsl , any news for adding RecyclerView? Can I use RecyclerView in combination with AysmetricGridView? If yes, could you please so nice and provide an example? Thank you!

felipecsl commented 9 years ago

not yet, but if enough people need it I might do it.

edwardfoux commented 9 years ago

+1

supersume commented 9 years ago

I need this

felipecsl commented 9 years ago

alright I'll work on this for the next version

mateusgrb commented 9 years ago

+1

felipe-silvestre-morais commented 9 years ago

+1

Ivan018 commented 9 years ago

+1

felipecsl commented 9 years ago

This is currently in progress on master. You can check it out if you want, it's still very early stage though (pre-alpha), just use the 3.0.0-SNAPSHOT release

felipe-silvestre-morais commented 9 years ago

Great! I was in your presentation iMasters Android Developer, by the way. Congratulations, good presentation.

felipecsl commented 9 years ago

thanks :smile:

ahornerr commented 9 years ago

:+1:

jamespet77 commented 8 years ago

Just found this. seems to be what I am looking for, but needs support for RecyclerView. How is this coming?

felipecsl commented 8 years ago

@linuxjet you can experiment with the current snapshot for version 3.0.0-SNAPSHOT if you want to give it a try, but it's still under development and pre-alpha state. I'll update this issue once it's more stable

Duna commented 7 years ago

+1

Max01010101010101 commented 7 years ago

hi, am new to this lib... something has change in the last 2 years about the Recyclerview support?

Serrust commented 6 years ago

Same question, may I ask is there any new progress on supporting Recyclerview? Thanks!

Duna commented 6 years ago

Google solved it directly on android. Because of this the library should be marked as obsolete.

StaggeredGridLayoutManager staggeredGridLayoutManager = new StaggeredGridLayoutManager(3, LinearLayoutManager.VERTICAL);
        recyclerView.setLayoutManager(staggeredGridLayoutManager);
felipecsl commented 6 years ago

I don't think StaggeredGridLayoutManager can have items spanning both multiple rows and columns. I'd be happy to deprecate this library if that's the case

premacck commented 6 years ago

Yeah I need support for RecyclerView too!