centering-recycler-view
centering-recycler-view copied to clipboard
A RecyclerView implementation that scrolls a view to center (top, bottom, left, or right).
How i can scroll to middle item Immediately ? I tried this but did not work ``` java case R.id.linear_horizontal: mRecyclerView.setAdapter(new DemoAdapter(R.layout.linear_horizontal)); mRecyclerView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false)); mRecyclerView.center(DemoAdapter.MIDDLE_ITEM); // scrolled but...
In my project i have to compile against 22, and your project is 23, so this cause me erros. There is a way to solve this?