Maybe it's because I've been through so many disappointing tutorials, textbooks and manuals... but I need to say, so far, you're a legend! Thank you for bringing your content to the world.
your content seems quite underrated, seeing as it's free and considering how well put-together it feels, where I'm barely just skirting the surface of Android development - it's definitely been clearing a considerable amount of fog for me, so thanks for that!
Been messing around with Android for a while. First go-around I used Caleb Curry's videos. For some reason, that's what searching RUclips gave me. I wish I had found these years ago instead. Thanks! :)
So by adding or going back and forth activities by Intents will just keep on adding onto the activity stack hence we have to finish() or pop it off the stack. Just wanted to confirm please and thank you.
Hi Phillip, I use your splash screen video, but when I add these other activities then when clicking on my button it go to the splash screen, why, please assist, thanks for your videos
Sorry to be pedantic, this should show going "up" instead of back - i understood "back" was system wide, but "up" navigated within an apps own current activity stack? Anyhow, fantastic content, thanks for making and sharing.
Love your explanations and your videos. Does anyone know why my app keeps crashing when I add finish() to the second activity? it works fine when finish() is not called but once I add it in code and press the button on the first activity the app crashes and I can't figure out why. Thanks guys
You prolly dont care but does someone know a method to get back into an instagram account?? I stupidly forgot the password. I would love any tricks you can give me
@Bishop Cedric Thanks so much for your reply. I got to the site thru google and I'm in the hacking process atm. I see it takes quite some time so I will get back to you later with my results.
So well design contains with prefect sequence…. ANDROID FUNDAMENTALS FOR BEGINNERS you made learning so simple and easy. The contents of each video are extremely gentle and to the point.
::class.java gives you the reference to a Java class and ::class gives you the reference to the Kotlin class, these are just two different types with some differences
Update: I didn't add one very important extension that nobody tells u. Is this one: Id 'kotlin-android-extensions' Now I can write the name of my button properly on MainActivity.
Is there a way to select an activity based on a variable? such as you would use `Class.forName("com.my.app.$name").newInstance()` to get a fragment using the name var
Maybe it's because I've been through so many disappointing tutorials, textbooks and manuals... but I need to say, so far, you're a legend! Thank you for bringing your content to the world.
Thank you🙏🙏
your content seems quite underrated, seeing as it's free and considering how well put-together it feels, where I'm barely just skirting the surface of Android development - it's definitely been clearing a considerable amount of fog for me, so thanks for that!
This guy make it looks so easy, all that knowledge for free.
Been messing around with Android for a while. First go-around I used Caleb Curry's videos. For some reason, that's what searching RUclips gave me.
I wish I had found these years ago instead. Thanks! :)
You really saved myself some hours of lifetime. I had the problem solved by 11:16 . Thank you for showing it
Finally a crystal clear explanation I have been struggling to understand this
You're an excellent teacher! Both you and your on screen actions are easy to understand and follow. Thank you for doing all this!
Thanks for including such a clear explanation of 'it' and 'also'!
You are a fantastic person and videos too, thank you for this precious Playlist
Very clear explanation, that’s amazing. Thank you
Thanks a lot for clearing the concept of Context, I've been struggling a lot.
nice way to navigate through activities without creating a value and StartActivity(value). Simple code is the best & thanks for good tutorials!
thanks a lot Mr , you are giving great knowledge to people
Excellent Video, very useful, regards from Venezuela
hi i was following the video but for some reason when i try to write the btn... in my MainActivity it says "unresolved Reference"
Great tutorial,keep them coming
Great video, clear and on point.
fantastic video bro, helped me a lot as a beginner. Please keep it up.......
welldone, keep doing a good job
Simple and amazing. I truly appreciate it.
You have solved my problem thanks a lot ❤️
So by adding or going back and forth activities by Intents will just keep on adding onto the activity stack hence we have to finish() or pop it off the stack. Just wanted to confirm please and thank you.
How do you open/display the list in 7:18? not in my android studio. Thank you!
By pressing Ctrl + P :)
Unfortunatly ths systme doesnt find my btnopenActivity at 6:10, you have an idea ?
@@sandeshbme ye Tell me when you find a slotution for this 👍
A bit different, but you could use a View Binding to refer to it.
You need View Binding library now
then in your code you type binding.btnOpenAcitivy
val btnOpenActivity = findViewById (R.id.btnOpenActivity)
btnOpenActivity.setOnClickListener {...}
Thank you for one more nice lesson🙏
Hi Phillip, I use your splash screen video, but when I add these other activities then when clicking on my button it go to the splash screen, why, please assist, thanks for your videos
Thanks bro, u r amazing! never stop! ;)
Thank you so much !!! Easy to learn
Excellent tutorial. Wunderbar!!!
Learning from India. Thank you Philipp for your great content on Kotlin.
Sorry to be pedantic, this should show going "up" instead of back - i understood "back" was system wide, but "up" navigated within an apps own current activity stack?
Anyhow, fantastic content, thanks for making and sharing.
Nice tutorial Philipp Bro !!!
Thank you 👍
hi sir i have this probleme in android studio Error:(18, -1) Android Resource Packaging thanks
Great video
Why should we type class.java in kotlin ??
Yeah why?
Duude ur amazing
It will be helpful to post here the link for the tutorial "round trip" that you mentioned (time = 10:10 - 10:20)
Thanks Philip!!!
sorry but how do you link btnOpenActivity directly with set onclick listener without defining new var :Button?
ruclips.net/video/1xj9G2FvLeE/видео.html
go to your gradle app and add plugins this , apply plugin: 'kotlin-android-extensions' , and it will work without var
Hey we can use a thing like view binding now. His way of doing that is now outdated! I think
great tutorial
very nice video, i just wish you could do the same thing in java
Sir....great work ... i can't fetch that Appcompatactivity....no suggestions showing up
plz help
Can you say the difference btw intent and pending intent?
an example on pending intent with detail information.
Love your explanations and your videos. Does anyone know why my app keeps crashing when I add finish() to the second activity? it works fine when finish() is not called but once I add it in code and press the button on the first activity the app crashes and I can't figure out why. Thanks guys
Thanks a lot - very clear and short :)
You prolly dont care but does someone know a method to get back into an instagram account??
I stupidly forgot the password. I would love any tricks you can give me
@Bishop Cedric Thanks so much for your reply. I got to the site thru google and I'm in the hacking process atm.
I see it takes quite some time so I will get back to you later with my results.
@Bishop Cedric it did the trick and I finally got access to my account again. Im so happy:D
Thanks so much, you saved my account !
@Lance Karsyn Glad I could help =)
Thank you so much
Thanks for this video
This is gold..
Hi Philipp, what do you recommend learning after finishing your playlist?
Building our own projects upon learning every new thing and trying to implement the things we learnt.
I can't go to an activity from a fragment using a floating action button by using intent function
Thanks!
Nice.
thank you is amazing ! C:
really thank you
Thank you. Danke
So well design contains with prefect sequence…. ANDROID FUNDAMENTALS FOR BEGINNERS you made learning so simple and easy. The contents of each video are extremely gentle and to the point.
please make video on activity flags.
Epic!
app keeps crashing whenever intent() is called
****** VERY IMPORTANT QUESTION *******
Does "activity::class.java" means { type: class. dir: java } and if not what does that statement do???
::class.java gives you the reference to a Java class and ::class gives you the reference to the Kotlin class, these are just two different types with some differences
@@PhilippLackner much appreciated brother!
'btnOpenActivity' this doesnt workin my android studio
val btnOpenActivity = findViewById (R.id.btnOpenActivity)
btnOpenActivity.setOnClickListener {...}
i didnt like the video......... I LOVE THE VIDEO... i learnt more than the intent i came for ....
Can I go to main activity directly from third activity??
Yes
I'm not able to create intent.
Update: I didn't add one very important extension that nobody tells u. Is this one:
Id 'kotlin-android-extensions'
Now I can write the name of my button properly on MainActivity.
Where is the tutorial for Java? Im not ready for kotlin yet :D
:)
I am here May 2021
Is there a way to select an activity based on a variable? such as you would use `Class.forName("com.my.app.$name").newInstance()` to get a fragment using the name var