I have a StaggeredGridLayoutManager that loads 20 cards which contain images (loaded from cache, network, or storage with Picasso) in a 2 column wide grid.
Issue:
Currently, as you scroll down the list the images are loaded as the cards slide into view like this video:
https://www.youtube.com/watch?v=1xMNmMjqEbI
Desired solution:
What I would like to happen is for the images to load offscreen, so there is a seamless UX like this video:
https://www.youtube.com/watch?v=4c7ZID7yjII
These videos are from a blog post which solves this problem using LinearLayoutManager, not StaggeredGridLayoutManager. I cannot seem to figure out the equivalent solution for this issue. I'm fairly new to android development and have tried to read through the documentation but I canot seem to find anything leading to a solution.
Code:
// Setup RecyclerView
mRecyclerView = (RecyclerView) rootView.findViewById(R.id.gridview_posts);
mRecyclerView.setHasFixedSize(true);
// Setup StaggeredGridLayoutManager
mLayoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
mRecyclerView.setLayoutManager(mLayoutManager);
// Set Adapter
mPostsAdapter = new PostAdapter(rootView.getContext(), posts);
mRecyclerView.setAdapter(mPostsAdapter);
// Start RestClient & get posts
restClient = new RestClient(getString(R.string.api_location));
getPosts();
Preload the images to show in a cache, so instead of loading them while you scroll the list, they're already on memory.
Also, remove the Picasso fadeIn animation.