Issue
Can anyone have idea to how to implement horizontal recyclerview like Instagram create story screen effect listing from camera.? Shown in below image.
Solution
You can use RecyclerView and when creating LayoutManager you need to select Horizontal option
RecyclerView recyclerView = findViewById(R.id.recycler_view);
recyclerView.setAdapter(adapter); //your adapter
recyclerView.setLayoutManager(new LinearLayoutManager(this, RecyclerView.HORIZONTAL, false));
Answered By - Ihor Bykov
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.