What's the best and easiest way to decorate RecyclerView to have such look & feel? i am developing an travels seat booking application... i know i can do it with recyclerview with gridlayout manager..but what should be the steps i dont know one thing to be note each bus have different seating arrangemen
RecyclerView with GridLayoutManager [duplicate]
I suggest you to use StaggeredGridLayoutmanager
for your recycler view.
It's the closest approach to achieve your layout.
You can find the docs here. And working example can be found here.
how you do this layout ....can you post some sample code –
Clyte
@AawazGyawali: Good one !! –
Outfit
Can you tell me the steps which i should use....please mail me bro at [email protected] –
Clyte
Based on the type of bus choice, switch between GridLayoutManager
, and StaggeredGridLayoutManager
.
For all the types, use a header view with just a steering wheel icon right aligned.
- For the seater-only type:
- use a 4 span
GridLayoutManager
- use an item decorator for providing the spacing between the 2nd and 3rd column
- use a footer view with 5 seats view
- use a 4 span
- For the mixed-type:
- use a 3 span
StaggeredGridLayoutManager
- use an item decorator for providing the spacing between the 1st and 2nd column.
- use different item type for the sleeper seats (see: onCreateViewHolder(parent,viewType))
- use a 3 span
- For the sleeper-only type.
- use a 4 span
GridLayoutManager
- use an item decorator for providing the spacing between the 1st and 2nd column
- use a 4 span
Do you have some sample or anything else..i am not able to find anything like it... –
Clyte
@tufan, first lesson on SO: don't ask for code. –
Amphibole
okay ...but can you tell me in your 3rd step use an item decorator for providing the spacing between the 1st and 2nd column..how to do it –
Clyte
The answer here is enough to help you out with your layout. If you don't understand what the answer is taking about, then you'd better learn more about RecyclerView. There are a lot of tutorials out there. –
Amphibole
@Clyte Google for "item decorator in RecyclerView" –
Amphibole
okay thank you i am searching for it....i had lost my hope now i have a seen a light ...i m trying thanks –
Clyte
© 2022 - 2024 — McMap. All rights reserved.