How to Implement Nested RecyclerView in Android Studio | NestedRecyclerView | Android Coding

  Рет қаралды 24,944

Android Coding

Android Coding

Күн бұрын

Пікірлер: 67
@kapiludr1987
@kapiludr1987 3 жыл бұрын
superb if it works, I have to try it...........................
@AndroidCoding
@AndroidCoding 3 жыл бұрын
It's working perfectly just follow the video properly.
@franciscocordeiro8080
@franciscocordeiro8080 4 жыл бұрын
Great video, just started in android and you saved my project. thanks for the help!
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Thanks. It is my pleasure.
@franciscocordeiro8080
@franciscocordeiro8080 4 жыл бұрын
@@AndroidCoding does the vertical scroll only work properly with relative layout? I was using constraint layout and it would only scroll like 95%
@franciscocordeiro8080
@franciscocordeiro8080 4 жыл бұрын
well I manage to fix it, looks like you can't use wrap-content or else it won't catch the end of it properly
@DellohBorisOuahou
@DellohBorisOuahou 3 жыл бұрын
what event to add to retrieve when I slide my finger over an element from left to right
@ErickAguilaYYE18
@ErickAguilaYYE18 4 жыл бұрын
How can i add individual members for each group, example i need to fill 2020 group with 2 months jan and feb, and 2019 with nov and dec, any idea? i need a dynamic view spinner with 4 months of a year, in case month is < 4 like february as position (02) will have 2 groups and 2 member each
@dineshneupane6248
@dineshneupane6248 3 жыл бұрын
adding click listener to child items? any way ?
@techyakshay6868
@techyakshay6868 4 жыл бұрын
Sir if i want to get click of inner recyclerview (member recyclerview ) how can i do that please hep me that
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Set onClickListener on itemview of memberAdapter. Like this : holder.itemview.setclicklistener(new ..){ //Do something here } )};
@manalbenchrif2961
@manalbenchrif2961 4 жыл бұрын
please help i want to select of recycle 2 where id = id of title in recycle 1
@vipinkrishna131
@vipinkrishna131 4 жыл бұрын
better than section recycler view.. great video
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Thanks
@محششأذكىمنك
@محششأذكىمنك 4 жыл бұрын
Thank you ❤️❤️❤️ But often the data will not be static, so if it is possible to make a second part of the video as soon as possible, explaining in the case of fetching data from a database (firebase) how you can deal with using mvvm(live data)
@Dadi9797
@Dadi9797 4 жыл бұрын
Great Video! I have a question: if I want to have only the list of groups and after, by clicking on a small arrow (for example), showing the list of members for that group, how can I do?
@razvanapostol3810
@razvanapostol3810 4 жыл бұрын
Hi Dave, I did something similar, try looking some tutorials with Expandable Layouts. I suggest you this one: kzbin.info/www/bejne/eZqze6KZgNqMeZI
@AnhDuc-xx1kz
@AnhDuc-xx1kz 4 жыл бұрын
Thank you so much, the video was great and helpful.
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Welcome
@AnhDuc-xx1kz
@AnhDuc-xx1kz 4 жыл бұрын
@@AndroidCoding Hope to see more new videos from you.
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Sure. Why not?
@kushalprajapati3918
@kushalprajapati3918 3 жыл бұрын
how i get data from inner RecyclerVIew ?????
@harisabdullah729
@harisabdullah729 4 жыл бұрын
keep t bro your channel gonna boost soon
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Thanks. Keep supporting.
@khalidasbon2679
@khalidasbon2679 4 жыл бұрын
Hi bro, i have a recyclerview like this one, but the data will be in a room database, i wanna know how many table should i create ?? or how should i design my room database ??
@wanilashow5663
@wanilashow5663 2 жыл бұрын
hello, did you solve the problem?
@pawanKumar-qh1or
@pawanKumar-qh1or 4 жыл бұрын
Sir how we can calculate sum of all integer value of recyclerview like product quantity and product total value...plz give me guidline...thank you
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Try this i hope it will help you. Add method : private int grandTotal(List dataArrayList { int totalPrice = 0; for(int i = 0 ; i < items.size(); i++) { totalPrice += dataArrayList.get(i).getPrice(); } return totalPrice; } Call method : grandTotal(dataArrayList);
@pawanKumar-qh1or
@pawanKumar-qh1or 4 жыл бұрын
Thanks alot sir for reply me and help me out...thank u
@nandinicherukuru9982
@nandinicherukuru9982 4 жыл бұрын
How to add different names in place of passenger?
@sumrjd
@sumrjd 2 жыл бұрын
No one answer me , first Excelent tutorial and thank you so much , my question do you know how to get parent postion if i click on child member , for exmaple if i click on member2 of group 3 i want Toast showup and say you are child of group3
@kratom82
@kratom82 3 жыл бұрын
less music more talking. those kind of "tutorials" are a horror and just a waste of time.. just useful for copy/pasters
@goraghosh6622
@goraghosh6622 3 жыл бұрын
All the groups have same data. But in real time different group contains different data. How to implement that? Otherwise it is not useful
@sudhakarrotta3626
@sudhakarrotta3626 3 жыл бұрын
hi bro how are you , your tutorials is very help for me .. i requested you make a one video for how to add search filter in nested recylerview please bro help me
@rafaeleloi5522
@rafaeleloi5522 3 жыл бұрын
Hello, how do I put the data in an array where "GROUP 1" is? Remove "GROUP 1" and insert "01/02/2021" Remove "GROUP 2" and insert "02/02/2021" Remove "GROUP 3" and insert "03/02/2021" Remove "GROUP 4" and insert "04/02/2021" Remove "GROUP 5" and insert "05/02/2021" That is, I would like to put the information of my query generated in sqlite. Example: 02/01/2021 MEMBER 1 MEMBER 2 MEMBER 3 MEMBER 4 MEMBER 5 (Make him / her show in the group all the members referring to 01/02/2021, and in a way that happens for the other dates ...) 02/01/2021 MEMBER 1 MEMBER 2 MEMBER 3 MEMBER 4 MEMBER 5
@rajuadapa05
@rajuadapa05 4 жыл бұрын
How to open every member.. Please add intents.. Video is good
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Thanks. Explain actually what you want to implement?
@rajuadapa05
@rajuadapa05 4 жыл бұрын
@@AndroidCoding I mean add the activites to all child elements (member 1, member2.... Etc) suppose if I click Group1 in member 1 then open new activity..
@etzumahkaya9583
@etzumahkaya9583 3 жыл бұрын
and related parent child data list? dont static list, diferent data for parent
@r4jjin
@r4jjin 4 жыл бұрын
good job..make sure to provide wrap_content when creating child views. psst note to myself
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Thanks for appreciation and sharing your experience/knowledge.
@amarlaha3954
@amarlaha3954 4 жыл бұрын
Thanks sir. Sir can u make a video on infinite recyclerview. Thanks again
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Welcome. This topic is already in my list. I will make a video later on this topic.
@amarlaha3954
@amarlaha3954 4 жыл бұрын
@@AndroidCoding but i am already checked your recyclerview playlist. There is no video about infinite scrolling recyclerview
@AndroidCoding
@AndroidCoding 4 жыл бұрын
In pending list bro.
@amarlaha3954
@amarlaha3954 4 жыл бұрын
@@AndroidCoding pending list 🤔🤔
@greyarea378
@greyarea378 4 жыл бұрын
Video is useful but can you provide its source code, it would be really helpful because I am finding it little hard to open the source code that is in description , so can you please provide the source code in a manner openable through notepad or word . Thank you
@diegoalejandromartinezespi6672
@diegoalejandromartinezespi6672 4 жыл бұрын
Muchas gracias por la explicacion, pero podrias ayudarme a hacerlo con firebase por favor. Es que los videos que existen con firebase de Nested no funcionan. Por favor
@wanilashow5663
@wanilashow5663 2 жыл бұрын
hello, did you solve the problem?
@abghifareihand
@abghifareihand 3 жыл бұрын
i want source code
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@diegoalejandromartinezespi6672
@diegoalejandromartinezespi6672 4 жыл бұрын
Hola, disculpa podrias hacerlo con firebase por favor
@desenvolvedortakeuchi8166
@desenvolvedortakeuchi8166 4 жыл бұрын
I really need this video in kotlin
@john20johnny
@john20johnny 4 жыл бұрын
Hi bro, may I have your email? I'm working on my app and I have a problem, I hope if it's possible for you help me to solve it. Thank you
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Hi, How can i help you?
@john20johnny
@john20johnny 4 жыл бұрын
@@AndroidCodingit's not convenient to explain here, this is my email: china.website@outlook.com Text me there please. Thank you.
@AndroidCoding
@AndroidCoding 4 жыл бұрын
For any queries direct message on Facebook or Instagram.
@lucasmartins6914
@lucasmartins6914 4 жыл бұрын
bug ? Implements method null
@nandinicherukuru9982
@nandinicherukuru9982 4 жыл бұрын
Nice video sir... Instead of member how to add different names there and names should be different for every row?
@learnwithfun567
@learnwithfun567 4 жыл бұрын
Though fast but good
@Lordoss
@Lordoss 4 жыл бұрын
wtf is that music dude
@AndroidCoding
@AndroidCoding 4 жыл бұрын
Sorry for that.
@harisabdullah729
@harisabdullah729 4 жыл бұрын
@@AndroidCoding how cares about the music all we care is the code..... and well done sir you are awesome keep it up
@AndroidCoding
@AndroidCoding 4 жыл бұрын
I love my all subscriber and viewer. Thanks for support.
@Vfocuse
@Vfocuse 4 жыл бұрын
this music is very bad
@godzabomni4148
@godzabomni4148 3 жыл бұрын
JESUS FUCKING CRISE!!! ANDROID STUDIO IS SO TIME CONSUMING AF !!!!!!!! Why i cant just for loop like making website!!!
@ukazap
@ukazap 4 жыл бұрын
Shitty music but an otherwise good tutorial.
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
RecyclerView With Multiple View Types | Android Studio Tutorial
22:24
DiffUtil - Improve performance of Recyclerview
15:06
Munir Hoque
Рет қаралды 8 М.
RecyclerView Item Click | Best Practice Way
8:06
Practical Coding
Рет қаралды 98 М.
RecyclerView(AndroidX 2020): Nested RecyclerView | Android Studio Tutorial
28:10
Multi view RecyclerView | getItemViewType() | Android
15:03
Mafia Codes
Рет қаралды 38 М.