Azoft / CarouselLayoutManager

Android Carousel LayoutManager for RecyclerView
Apache License 2.0
2.56k stars 367 forks source link

How to set center item? #25

Closed anik123 closed 7 years ago

anik123 commented 7 years ago

Is there any option/method to set center by manually(programatically)?

Please help?

Thanks in avdance.

mig35 commented 7 years ago

@anik123 Call RecyclerView.scrollToPosition method

anik123 commented 7 years ago

@mig35 i am getting

java.lang.IllegalArgumentException: position can't be great then adapter items count.

after using your solution.

mig35 commented 7 years ago

@anik123 Are you using last library version ('com.azoft.carousellayoutmanager:carousel:1.1.7')?

anik123 commented 7 years ago

My code is :

    layoutManager.setPostLayoutListener(new CarouselZoomPostLayoutListener());
    recyclerView.setLayoutManager(layoutManager);
    recyclerView.setHasFixedSize(true);
    recyclerView.setAdapter(adapter);
    recyclerView.addOnScrollListener(new CenterScrollListener());
    recyclerView.scrollToPosition(contacts.size()-1);
mig35 commented 7 years ago

@anik123 have you looked what version do you use?

anik123 commented 7 years ago

@mig35 that solve the issue. Thanks