hmm your video looks great but I just get the same portrait display when rotating to landscape mode. in the IDE it looks different but on the device same as portrait. what have i missed?
@paulcooper797824 күн бұрын
thanks, i have struggled 3 days now to try and make my app go from portrait to landscape but each rotation the app restarts, how do i stop it from restarting please?
@goldcakes25 күн бұрын
Amazing tutorial. I found another one that was easy to follow and they did explain things, but it wasn't easy to understand for not having used java or android development before. That tutorial let me set up a recyclerview, but this video let me understand recyclerviews. The other tutorial also covered multiple columns in recyclerviews which I needed. So combined the two vids were perfect.
@Moshahed-BangladeshАй бұрын
Hello! Are you ok? We havn't heard from you in a long time.
@TaggytАй бұрын
I copied my GitHub repository link into the define remote and an error came back and said repository not found, how do I fix this?
@larrycash5250Ай бұрын
Tried it not working on dicts
@mohammadmehdi6783Ай бұрын
hey, can you provide the source code for the project please
@oyleolduboyleoldu3677Ай бұрын
thank you clear and short
@kekeliagbozoАй бұрын
thanks man
@shashankchaturvedi-zv6ncАй бұрын
Hey , can you help tranform my idea into a reality ,I'm a big fan of your channel and really enjoy your vedios. I have an idea for a video tool that I think your viewers might find interesting.Let me know if you're interested!
@beastbhai8142Ай бұрын
Finally I got it thanks you
@r24mez43Ай бұрын
Thanks
@taillight_lsАй бұрын
Your explanation of those 3 adapter functions is just what i needed. Thank You a lot :)
@Amirtha20672 ай бұрын
What if the name is nmc and what is the output for this
@DancingHippo2 ай бұрын
Thank you, this video saved me so much time on my project🙏
@elsederry2 ай бұрын
I love you
@amirayasmine84902 ай бұрын
Thank you that helps a lot
@shakeebsaifi45632 ай бұрын
Very Helpful Content
@asa54362 ай бұрын
THANKUUUU SM
@tothpeter22962 ай бұрын
How can I highlight each subgrid without painting the row and column again?
@dm.gluhovv2 ай бұрын
jesus christ, is it really white man with no indian accent and with real face tellin me how to do some deals i need to do 😂😂 Thank you brother! really helpfull
@mashfiqulhoque43543 ай бұрын
Bro you help me. Thanks a lot
@anikeths9583 ай бұрын
Watched other videos but this really helped me clear the concept.
@allysonmartinez18823 ай бұрын
This was an amazing video! I needed to create a similar type of list in my app for a college assignment. This was extremly helpful and I look forward to using recycle viewers for future projects.
@liannabbo40323 ай бұрын
If I want to use multiple recyclerViews do I need to create each one it's own adapter?
@monkk13 ай бұрын
how is it possible to store images as integers?
@viveksahane13143 ай бұрын
Thanks 👍😊
@arsenicsenga3 ай бұрын
Be blessed ✨✨✨
@arsenicsenga3 ай бұрын
Sir, thanks a lot and more a lot again and again. You're just amazing, the way you're doing speaking is just incredible. Keep going 🎉
@Mirko_ddd3 ай бұрын
Great explanation of what a recycler view does, but I see some bad things (even if I know it is for the sake of simplicity). Anyway, for a beginner this is gold, so good work dude 😎
@Jeromel923 ай бұрын
Thank you sooo much! I was buried deep in stack overflow from 8+ years ago and could not get this until I watched your video. Been stuck on this for a day. You're a hero!
@ailekzavy3 ай бұрын
All perfect, thank you so much for your precious time. Can you please make a video teching how to format the numbers as i type , please? Instead '1234+5678' having '1 234+5 678+... ...'
@Liston6113 ай бұрын
Sound effects when fast forwarding are on point
@trndsttr75853 ай бұрын
Stellar work man.
@trndsttr75853 ай бұрын
I hope you know just how amazing your explanations are. Never stop brother.
@luatgia98373 ай бұрын
Perfect Thank you so much!
@miketony20694 ай бұрын
short and sweet and to the point.
@AD-eb2wb4 ай бұрын
Best video for RecyclerView Item Click Forwarding by far! Question: why does the onClickListener in an adapter need to be placed in an init { } block to work, but in fragments and activities you don't need to do this?
@africantales1244 ай бұрын
You're good. Thanks 👍
@danielgrana74874 ай бұрын
Unfornately a bad tutorial for the recyclerView. Problem is the connection between the xml and the UI. You're using keywords in the definition for each element, which I don't find in the List under strings.xml. And here I can't also find a link to your github account to check the solution of the project.
@aftolmolog4 ай бұрын
The meme "Every Programming Tutorial" fits this video perfectly.
@AD-eb2wb5 ай бұрын
Curious, why do you need to initialize the onClickListener in an init { } block? In fragments and activities you don't do this...
@zeno-2455 ай бұрын
you so cute
@MovieRecap1255 ай бұрын
Why do you stop uploading video , Buddy . Is every thing is all right. Take Care 😇
@HubertSobkow5 ай бұрын
Very nice video! :D
@cskofficialfanclub91675 ай бұрын
The app crashes when orientation is changed!! I added a btn by to switch orientation rather than rotating the phone. if we add display.setShowSoftInputOnFocus(false); the app crases when the btn is clicked or the phone is rotated... give me a solution bro
@cskofficialfanclub91675 ай бұрын
code for the btn when clicked public void btnchnage (View v) { int currentOrientation = getResources().getConfiguration().orientation; if (currentOrientation == Configuration.ORIENTATION_LANDSCAPE) { // Switch to portrait mode setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } else { // Switch to landscape mode setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } }
@cskofficialfanclub91675 ай бұрын
The app crashes even if there is not btn code... if i use the .setShowSoftInputOnFocus(false) , the app crases when the phone screen is rotated