Animated Background | Android Studio
6:53
Getting started with Arduino | Guide
9:20
Пікірлер
@Mirko_ddd
@Mirko_ddd 22 сағат бұрын
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 😎
@Jeromel92
@Jeromel92 5 күн бұрын
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!
@ailekzavy
@ailekzavy 5 күн бұрын
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+... ...'
@Liston611
@Liston611 8 күн бұрын
Sound effects when fast forwarding are on point
@trndsttr7585
@trndsttr7585 13 күн бұрын
Stellar work man.
@trndsttr7585
@trndsttr7585 14 күн бұрын
I hope you know just how amazing your explanations are. Never stop brother.
@luatgia9837
@luatgia9837 15 күн бұрын
Perfect Thank you so much!
@miketony2069
@miketony2069 22 күн бұрын
short and sweet and to the point.
@AD-eb2wb
@AD-eb2wb 23 күн бұрын
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?
@africantales124
@africantales124 Ай бұрын
You're good. Thanks 👍
@danielgrana7487
@danielgrana7487 Ай бұрын
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.
@aftolmolog
@aftolmolog Ай бұрын
The meme "Every Programming Tutorial" fits this video perfectly.
@AD-eb2wb
@AD-eb2wb Ай бұрын
Curious, why do you need to initialize the onClickListener in an init { } block? In fragments and activities you don't do this...
@zeno-245
@zeno-245 Ай бұрын
you so cute
@MovieRecap125
@MovieRecap125 Ай бұрын
Why do you stop uploading video , Buddy . Is every thing is all right. Take Care 😇
@HubertSobkow
@HubertSobkow Ай бұрын
Very nice video! :D
@cskofficialfanclub9167
@cskofficialfanclub9167 Ай бұрын
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
@cskofficialfanclub9167
@cskofficialfanclub9167 Ай бұрын
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); } }
@cskofficialfanclub9167
@cskofficialfanclub9167 Ай бұрын
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
@lyricaledits.
@lyricaledits. Ай бұрын
I personally don't have a laptop and I am making my final year project so I am working on it on different local devices is their any technique that I can do so whenever I edit the code itt should update the main one
@DANIELGBATEY
@DANIELGBATEY Ай бұрын
Very nice
@mikys1128
@mikys1128 Ай бұрын
thx 👍👍🙂
@muhammadmurtaza9247
@muhammadmurtaza9247 2 ай бұрын
the way you explained this topic is invincible ... recommended
@mudasirujallow7775
@mudasirujallow7775 2 ай бұрын
Thanks a lot nice Can you make a video on screen sizing for different devices. Of Android
@navjotsingh6930
@navjotsingh6930 2 ай бұрын
One of best tutorial on this topic.
@EdySmi
@EdySmi 2 ай бұрын
This is great. Would love to see how it works for a dictionary within a dictionary. I keep getting errors :/
@bigboss97
@bigboss97 2 ай бұрын
Very clearly explained 👍 Thank you for your hard work. Do you have a follow up video for selecting an item of the recyclerView?
@akhileshb_
@akhileshb_ 2 ай бұрын
I wrote this in Kotlin on the fly following your lead bro, it WORKS! RecyclerView is demystified for me now, will revise my learnings! Thank you so much!
@happybird2621
@happybird2621 3 ай бұрын
Thank you so much!
@jintumonisingha8717
@jintumonisingha8717 3 ай бұрын
I am new to this can someone explain the use of context why is it used
@FreddieAlicante
@FreddieAlicante 3 ай бұрын
Can you please make a tutorial for multi login using firebase 🥺
@leonelp9593
@leonelp9593 3 ай бұрын
everytime i gotta create a new repo i come here lol always forget how it is thanks mate!
@HussainAkbar
@HussainAkbar 3 ай бұрын
Very clearly explained. I am implementing this in my project right now. Did face a couple of hiccups and am working on solving them.
@vudathabhavishya9629
@vudathabhavishya9629 4 ай бұрын
I don't have VCS option on my top menu but i have git option. At first i saw VCS option but suddenly disappeared. Can anyone help with this?
@saved74
@saved74 4 ай бұрын
How do you call the text for the landscape view from your string resources after the rotation to landscape is completed? The text on a switch I have vanishes in landscape mode.
@shubhampaswaniitkgp2320
@shubhampaswaniitkgp2320 4 ай бұрын
9:28 I am getting a "Null Pointer Exception" while running the home page Can anyone help me out???
@neerajkumar-ts6om
@neerajkumar-ts6om 4 ай бұрын
woohoo uploaded my first project on git hub. Thanks buddy love you
@supernova_ultra
@supernova_ultra 4 ай бұрын
Thank you so much. I am beginner and I making this game by this video
@Keepfaith101
@Keepfaith101 4 ай бұрын
Thank you very much for this video! It helped me a lot with my project.
@supernova_ultra
@supernova_ultra 4 ай бұрын
Thank you bro
@octaviocuautle8181
@octaviocuautle8181 4 ай бұрын
It's giving me "symbol could not be resolved" when I type "aminoAcidNames.length" (10:00). I've followed the video pretty closely. I can't figure out what's wrong
@octaviocuautle8181
@octaviocuautle8181 4 ай бұрын
nvm. forgot to surround that line and the previous 3 with the setup method
@herecomessubking3104
@herecomessubking3104 4 ай бұрын
Omg ty man i had no clue was str is bro dang
@dmytrolemesh6458
@dmytrolemesh6458 4 ай бұрын
take off you face
@mudasirujallow
@mudasirujallow 4 ай бұрын
good series done man, i have an issue the onClick is not working on the buttons if click is getting stored in the touched box in the board can you please help.
@Anushkai1
@Anushkai1 4 ай бұрын
Thank You. Good Explanation
@adityadeshbhartar7172
@adityadeshbhartar7172 4 ай бұрын
So simple & clear explanation than anyone❤👍🔥 keep making such videos, community needs such youtubers
@robertdonnan2893
@robertdonnan2893 4 ай бұрын
Great. Thanks!
@zefffdd
@zefffdd 4 ай бұрын
big Gyokeres
@alpr_shn
@alpr_shn 5 ай бұрын
thank you so much Jason!!
@ailekzavy
@ailekzavy 5 ай бұрын
I just adore youuu,....I've been following you for a long time, I admire your work, it's incredible and I've learned a lot from you. Thank you very much for your time and wonderful work. Seriously, from the bottom of my heart...."If possible, could you please do the part 5, about how to setup the calculation history?" Millions thankssssssssssssssssss...
@mugilan9257
@mugilan9257 5 ай бұрын
outstanding 👍
@FRENEMIE.mp3
@FRENEMIE.mp3 5 ай бұрын
Super helpful! I’m not new to computers or languages, but I am new to Java/Kotlin lol. And I’m trying to build an app and learn logic. Definitely a work out, but this is INCREDIBLY helpful.