Navigation Component - Android Studio Tutorial

  Рет қаралды 181,009

Stevdza-San

Stevdza-San

Күн бұрын

Пікірлер: 127
@dychak
@dychak 4 жыл бұрын
Man, I saw 2 official videos already and still didn't get what it is. Your video finally triggered my mind. I think the visual aid in your video helps a lot.
@gamessss_
@gamessss_ 4 жыл бұрын
I am doing a google course for the same topic and yours is heaps better! Thanks for this! Life saver
@r1sh149
@r1sh149 4 жыл бұрын
same i was doing from udacity
@sohamshinde1258
@sohamshinde1258 3 жыл бұрын
same here... despite being the maker of it they couldn't explain it 😢
@puiky
@puiky 2 жыл бұрын
yeah, easy to understand and better than Android official team documentary video
@XaeroDegreaz
@XaeroDegreaz 4 жыл бұрын
At about @8:33 when he starts typing out "view.textField1" that's because he has applied the "kotlin-android-extensions" plugin in the app's build.gradle. Looks like a Kotlin plugin that creates extension functions for Views so you dont have to "findViewById()" all of the time. I'm not sure if that was already covered in a previous video of yours, but maybe adding that to the description, or something, could eliminate a little bit of confusion :D Thanks for the video
@sidecharacter9375
@sidecharacter9375 4 жыл бұрын
YOU just SAVE MY LIFEE, thanks man.
@samuelmcmurray3502
@samuelmcmurray3502 4 жыл бұрын
thanks
@周叡霆
@周叡霆 3 жыл бұрын
thx. you help me a lot.
@ПавелПрялкин-я6х
@ПавелПрялкин-я6х 2 жыл бұрын
​@@周叡霆 Also the java code for the: View view = inflater.inflate(R.layout.fragment_second, container, false); TextView textView = view.findViewById(R.id.textView2); textView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Navigation.findNavController(view).navigate(R.id.action_secondFragment_to_firstFragment); } }); return view;
@iraklyoda4213
@iraklyoda4213 24 күн бұрын
Damn, much more helpful than expected. Thank you 4 years later
@yonatan1myers
@yonatan1myers 3 жыл бұрын
The clearest and best tutorials on the internet! Man
@StevdzaSan
@StevdzaSan 3 жыл бұрын
Thanks! 💜
@Brakoose
@Brakoose 2 жыл бұрын
i have read severals books, they couldnt explain simpler like you. i get so well now
@StevdzaSan
@StevdzaSan 2 жыл бұрын
Glad to hear that!
@kaszabi9427
@kaszabi9427 4 жыл бұрын
you just made my day! thank you so much for this
@mayra_vgm9011
@mayra_vgm9011 4 жыл бұрын
i love you
@yimingchu3176
@yimingchu3176 4 жыл бұрын
Fantastic video!! This is even better than the official docs and tutorial!! Respect
@peyvandjadidi4395
@peyvandjadidi4395 2 жыл бұрын
I just subscribed your channel because I've been searching for difference between data binding and view binding and I found yours useful. So I liked this video before I start it ❤️❤️❤️❤️❤️
@StevdzaSan
@StevdzaSan 2 жыл бұрын
Thank you 😊💜🙏
@Stan_Kniazev
@Stan_Kniazev Жыл бұрын
The best explanation I've ever seen
@sanuhara1375
@sanuhara1375 3 жыл бұрын
At last, I got it cleared from your video.. huge 👍 👍👍👍
@nagarajhegde3363
@nagarajhegde3363 11 ай бұрын
Good simple introduction. Thank you!
@sumitjindal1115
@sumitjindal1115 3 жыл бұрын
Thank you soo much man....please make these types of video more as it is very helpful for us.
@telloborneo3635
@telloborneo3635 4 жыл бұрын
great videos !!, Please make video about handling the backstack, its so difficult for me.., this is my cases, here the flow of navigation graph : 1. A-B-C 2. D-B-F The question is, how the B fragment knows, which fragment that called them, from A or D, i mean how to handle onBackpress, im glad if u have the solution, thanks dude!
@abdullahimusa3153
@abdullahimusa3153 2 жыл бұрын
Stevdza-San saving me once again
@StevdzaSan
@StevdzaSan 2 жыл бұрын
Anytime broah 🦸‍♂️🙌
@niko3359
@niko3359 3 жыл бұрын
Could you also please add the java code to your description. That really helped in your last video. Thank you for these amazing tutorials!!!
@raylyth8324
@raylyth8324 3 жыл бұрын
I love you man. Thanks for the video.
@kevinsolanki6232
@kevinsolanki6232 3 жыл бұрын
add this in gradle(module) dependencies: apply plugin : "kotlin-android" apply plugin : "kotlin-android-extensions"
@radwl
@radwl 3 жыл бұрын
Such a good video! You explained every important feature very well.
@vatsaljain3207
@vatsaljain3207 3 жыл бұрын
Thank you so much you made my dayyyyy
@StevdzaSan
@StevdzaSan 3 жыл бұрын
Happy to hear that 😁👊
@softMediaWox
@softMediaWox 4 жыл бұрын
Simple and Plain. Thank you.
@lucye7320
@lucye7320 4 жыл бұрын
Terrific walkthrough, thanks!
@BehruzbekOtayev
@BehruzbekOtayev 4 жыл бұрын
at 8:34, view.textView1.setOnClickListener is giving me an error. I cannot access the textView object from view. What should I do? Do I have to configure something in the build.gradle file?
@StevdzaSan
@StevdzaSan 4 жыл бұрын
View Binding
@BehruzbekOtayev
@BehruzbekOtayev 4 жыл бұрын
@@StevdzaSan Thank you. I have configured viewBinding to true in my build.gradle file. what I know is I should create a lateint val binding, and use that binding object to call all my views with IDs. however, you have not declared any binding object in your FirstFragment.kt file. How are you calling it from a view object? Or first do I have to change something in my MainActivity.kt file, and then does FirstFragment.kt import my binding object from MainActivity.kt?
@StevdzaSan
@StevdzaSan 4 жыл бұрын
@@BehruzbekOtayev Because now kotlinx.synthetic is deprecated.
@BehruzbekOtayev
@BehruzbekOtayev 4 жыл бұрын
@@StevdzaSan thank you. I will figure it out.
@techmarinar
@techmarinar 3 жыл бұрын
Thanx man this was very helpful ☺️
@elmarchantw
@elmarchantw 3 жыл бұрын
Even though it was in Kotlin language, it has been useful to me. Thanks :).
@electrious_46
@electrious_46 2 жыл бұрын
Thanks a lot man, it really helped me 🙏
@Jaimecoder
@Jaimecoder 10 ай бұрын
Machaa Allah machaa Allah machaa Allah, Allah yberek fik doctora! Et bravo Mr le journaliste pour cette belle émission et votre compétence, Merciii
@rockychandu1444
@rockychandu1444 3 жыл бұрын
You are the best❤️
@rafaeldias8671
@rafaeldias8671 4 жыл бұрын
Muito bom o vídeo, muito bem explicado. Sensacional.
@mounirelomri9681
@mounirelomri9681 2 жыл бұрын
Really clear tutorial, thanks
@StevdzaSan
@StevdzaSan 2 жыл бұрын
Glad to help! 🙌
@ngocanho4323
@ngocanho4323 3 жыл бұрын
good content, easy way to make watcher understand how to do. Ty so much
@DanilTsyban
@DanilTsyban 3 жыл бұрын
Thx for the lesson. It was easy to understand
@kovanodevelop
@kovanodevelop 4 жыл бұрын
Падажжи. Зависимости нужные в градл сами цепляются, нужно только разрешить? А мы копировали из техдокументации - карго да.
@abhinavsingh-zc2hk
@abhinavsingh-zc2hk 3 жыл бұрын
Thank you so much for this amazing playlist 👌
@mariahsmith1589
@mariahsmith1589 4 жыл бұрын
Would be cool to have xml and design tabs open for those of us that prefer the xml
@muthami_duncan
@muthami_duncan 3 жыл бұрын
Very amazing tutorial. Very helpful.
@pythonsamurai
@pythonsamurai 4 жыл бұрын
Своих всегда можно узнать по акценту.
@MxMayers
@MxMayers 4 жыл бұрын
жаль что не по "нашему" этот наш "свой" рассказывает
@denzmc
@denzmc 4 жыл бұрын
он поляк
@_Smai1e_
@_Smai1e_ 3 жыл бұрын
@@denzmc серб
@fahadhabibjanjua
@fahadhabibjanjua Жыл бұрын
simple and fun
@NimishNatani
@NimishNatani Жыл бұрын
I have a doubt that if I press back button when I was in first fragment it move to second fragment instead back button has to pause the activity
@kiwi2793
@kiwi2793 3 жыл бұрын
arigato stevdza san!!
@lawalhayde3933
@lawalhayde3933 3 жыл бұрын
Good day @ Stevdza-San. The line " view.textView.setOnClickListener {Navigation.findNavController(view).navigate(R.id.navigate_to_secondfragment)}" is not referencing or calling the "textView" id from the first fragment. Instead android studio is showing Unresolved reference:textView :( the same error happens too in the second fragment with the second fragments id(textView2) :(
@StevdzaSan
@StevdzaSan 3 жыл бұрын
Kotlinx.synthetic is now deprecated, migrate to View Binding instead. I've made a video about it: kzbin.info/www/bejne/g4m9q2dpbcZ2eq8
@lawalhayde3933
@lawalhayde3933 3 жыл бұрын
@@StevdzaSan Thank you 😖 I retried and watched the video multiple times, since I thought I was doing something wrong. Thanks a bunch
@GuitarreroDaniel
@GuitarreroDaniel 4 жыл бұрын
Incredible explanation, thanks for this! :)
@tommymagic869
@tommymagic869 4 жыл бұрын
Great tutorial! Thank you!
@chenchiaho
@chenchiaho 3 жыл бұрын
cute background music
@pankajwandre5961
@pankajwandre5961 4 жыл бұрын
Hello.. Great explanation.. Please Can you make video on searchview in recycler view.. Thankyou.. Love from India.. And you are great..
@hassanammer7854
@hassanammer7854 3 жыл бұрын
great Work 🤩💙
@StevdzaSan
@StevdzaSan 3 жыл бұрын
Thanks! 🙌
@prasanthmanimaran5158
@prasanthmanimaran5158 3 жыл бұрын
Sir, if you don't mind, can I ask you something? Let say an app needs 3-4 different user logins (teacher, students, etc). How would you approach this issue, sir? Thank you so much
@NamNguyen-ql6ov
@NamNguyen-ql6ov 3 жыл бұрын
great video, tks very muchmuch
@StevdzaSan
@StevdzaSan 3 жыл бұрын
You're welcome 🙏
@TechAshlyn
@TechAshlyn 3 жыл бұрын
thank u so much
@francisconeto9081
@francisconeto9081 3 жыл бұрын
I have to put someting on my main activity?
@javad0470
@javad0470 4 жыл бұрын
when we navigate to another fragment ، the data in fragment is lost , what we can do ?
@liweijian
@liweijian 4 жыл бұрын
Great video, awesome thanks
@theai2020
@theai2020 2 жыл бұрын
How to open any fragment from any other activity not the host activity
@vaaronka
@vaaronka 4 жыл бұрын
Amazing video !
@luuchoo93
@luuchoo93 Жыл бұрын
I've created a navgraph but the "directions" class from Fragment 1 to Fragment 2 doesn't generate automatically. What could be wrong?
@randomthings77
@randomthings77 4 жыл бұрын
Can we navigate through multiple activities by using bottom navigation bar?
@DiegoTube85
@DiegoTube85 3 жыл бұрын
should the findNavController method be better called in the onViewCreated method?
@nivethan1897
@nivethan1897 4 жыл бұрын
Thank U For this great video.....
@antomicawad6377
@antomicawad6377 4 жыл бұрын
Interesting topic , is it new feature in the latest upd?
@StevdzaSan
@StevdzaSan 4 жыл бұрын
That's correct
@antomicawad6377
@antomicawad6377 4 жыл бұрын
@@StevdzaSan thank you for covering it
@KL-es9bt
@KL-es9bt 4 жыл бұрын
How to make those fragments take up status bar as well?
@GAGANDEEP901
@GAGANDEEP901 3 жыл бұрын
how to do the same with back button?
@afaquejaya2524
@afaquejaya2524 2 жыл бұрын
Thanks
@MangekyouGui
@MangekyouGui 4 жыл бұрын
Excelente vídeo! Ajudou muito!
@shinmasterx
@shinmasterx 2 жыл бұрын
doesnt let me add the dependancies automatically :( just says it cant find them....
@mahirbird9071
@mahirbird9071 4 жыл бұрын
Hi sir.. I downloaded Android Studio 3.6.1. But I found a problem, there is no support repository in SDK tools! Besides, there is no android drawable importer in the Plugins. I hope you tell me about the cause and how to overcome this problem. I googled the issues and search many videos in KZbin but that was useless. Thanks
@harshpatel-bt5wr
@harshpatel-bt5wr 3 жыл бұрын
how can we handle multiple navigation graphs in app ?
@kickhuggy
@kickhuggy 4 жыл бұрын
I can't figure out how to do this with fabs. I'm working across fragments and activities. Using the fab to navigate between activities, can't find any examples of this though
@yassinmziya2733
@yassinmziya2733 5 ай бұрын
Make sure activity subclasses FragmentActivity 😮‍💨
@mehrob781
@mehrob781 2 жыл бұрын
best content
@pronavsandhu
@pronavsandhu 4 жыл бұрын
Hi, but How to send data from one Fragment to another Fragment in this way?
@MoXyiD
@MoXyiD 4 жыл бұрын
Hey! Great videos! I was wondering if there will be a tutorial on how to navigate from a single fragment using numerous buttons which lead to more than one other fragment. like 1 fragment leads to 2+ others.
@codexrat
@codexrat 3 жыл бұрын
Are you looking to inflate 2 fragments simultaneously side by side? If that is the case then try to make a fragment with 2 child fragments(which you want to inflate) and make the parent fragment in the nav graph!
@ezstudio3d
@ezstudio3d 4 жыл бұрын
how can you change the fragment from the activity, I ask because I want one specific fragment to show some settings when the user select a settings menu?
@workwithray2569
@workwithray2569 3 жыл бұрын
how do you make this work with binding?
@bharathkalyans
@bharathkalyans 3 жыл бұрын
Hey ,I am not getting option of textView, like view.textView1 .I am not getting it!What should I do??
@StevdzaSan
@StevdzaSan 3 жыл бұрын
kzbin.info/www/bejne/g4m9q2dpbcZ2eq8
@hannanshaikh2616
@hannanshaikh2616 4 жыл бұрын
How to pass data between fragments in Navigation Components
@ShubhamGupta-ut4vv
@ShubhamGupta-ut4vv 4 жыл бұрын
onNavifationUp() is not working in Navigation Drawer Activity.
@ChinhNguyen-eg5km
@ChinhNguyen-eg5km 4 жыл бұрын
sr sir, can u help me with saving state fragment when navigating between fragment in Navigation component
@StevdzaSan
@StevdzaSan 4 жыл бұрын
I will create a tutorial about that in the future.
@ChinhNguyen-eg5km
@ChinhNguyen-eg5km 4 жыл бұрын
@@StevdzaSan thanks sir
@BehruzbekOtayev
@BehruzbekOtayev 4 жыл бұрын
Your Google Play Store link does not work... What happened?
@aayushsarikhada6
@aayushsarikhada6 3 жыл бұрын
I am actually new to Android dev, I have a question. When to use a activity and when to use a fragment??? Thanks in advance 👍👍(anyone can ans)
@StevdzaSan
@StevdzaSan 3 жыл бұрын
These days you would use multiple fragments and single activity only.
@h.r.60
@h.r.60 4 жыл бұрын
Keep up the great vids 👍
@regdenbhutia8984
@regdenbhutia8984 4 жыл бұрын
why my 1 activity is not showing
@laleyuniversal
@laleyuniversal 4 жыл бұрын
I try to do this with drawer and doesn't work, somebody knows something? :C
@clerdsonjuca3823
@clerdsonjuca3823 3 жыл бұрын
great
@quentinrufin4025
@quentinrufin4025 4 жыл бұрын
My app display the content of activity_main.xml instead of the first fragment XML. How do I change it?
@quentinrufin4025
@quentinrufin4025 4 жыл бұрын
ok I forgot the NavHostFragment in the activity_main.xml.
@unofficialboy_
@unofficialboy_ 3 жыл бұрын
I love you
@sumansahu1005
@sumansahu1005 2 жыл бұрын
You just speak what's going on, That is a hard to understand. it would be really great if you can add what is the intent and how in each step we can achieve it. Thank you
@pyaesonehan19
@pyaesonehan19 8 ай бұрын
@TheNitroPython
@TheNitroPython 6 ай бұрын
This is pretty confusing, Android studio is a nightmare lol
@zacharycaffey5464
@zacharycaffey5464 2 жыл бұрын
would be nice if half this stuff actually worked lol
@mrshow7462
@mrshow7462 2 жыл бұрын
Неплохо
@SKYTIME-qk3yj
@SKYTIME-qk3yj 4 ай бұрын
🇲🇾📲 🏦📲 🏧📲
@emmanuelarcamo377
@emmanuelarcamo377 Жыл бұрын
Can you please don't speed up your video.
@vaishnaviaalewad4888
@vaishnaviaalewad4888 2 жыл бұрын
I am getting error in the line : view.button1.setOnClickListener{Navigation.findNavController(view).navigate(R.id.navigateToFirstFragment)} Error : unresolved reference : Navigation
@minds_clear_02.23_
@minds_clear_02.23_ 3 жыл бұрын
The following options can be used as viable work arounds: 1. Retrieve the navController directly from the NavHostFragment. val navHostFragment = supportFragmentManager.findFragmentById(R.id.my_nav_host_fragment) as NavHostFragment val navController = navHostFragment.navController 2. Post the call to the findNavController method on a handler and execute all actions that need it after that post is complete. 3. Continue to use the fragment tag () to inflate the NavHostFragment issuetracker.google.com/issues/142847973
Safe Args with Navigation Component - Android Studio Tutorial
5:45
Full Guide to Nested Navigation Graphs in Jetpack Compose
12:01
Philipp Lackner
Рет қаралды 72 М.
진짜✅ 아님 가짜❌???
0:21
승비니 Seungbini
Рет қаралды 10 МЛН
Andro, ELMAN, TONI, MONA - Зари (Official Music Video)
2:50
RAAVA MUSIC
Рет қаралды 2 МЛН
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 291 М.
FRAGMENTS - Android Fundamentals
17:29
Philipp Lackner
Рет қаралды 342 М.
Navigation в Андроид | Android Studio & Kotlin
26:48
Navigation Component in Android Studio using Kotlin | Android Knowledge
21:19
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Рет қаралды 917 М.
Navigation Component | Android Jetpack | Android
17:26
Mafia Codes
Рет қаралды 50 М.