There was no "bye-bye" in the end! There always is :) Your videos are just great, I never thought I'd be learning Android and now it actually seems easy. Thank you very much
@wilwad2 жыл бұрын
Same here. Once you get Android studio up and running it's smooth sailing. I actually finished creating a Firebase app and am receiving push notifications in my apps.
@orangasli29432 жыл бұрын
Serializable is the methodology for java virtual machine to convert object or primitive data type into an array of bytes.. This is useful for sending data from one file into another.. It doesn't matter whether they are(the files) in the same directory or over the network.. Because data must be break into chunks like an array of bytes where each element is one byte.. They need to be sent via the OutputStream .. So that's why it was called a stream Because it's like byte by byte is flowing through the buses from a file into another file From a region of the hard disk into another region of the hard disk via the Ram
@erica-wo7iq4 жыл бұрын
you have no clue how much these videos are helping me!
@marc9882 жыл бұрын
Nice work. But Please, would you like to add timelines next time? It will help people to better watch the different parts of the video according to what they need to understand (UI design or coding...or else) and to navigate whenever they wanna go forward or backward to watch something something. Once more, thanks! 👏👏👏
@fangzsx04093 жыл бұрын
Your tutorials are awesome man! It is so informative! Keep making these amazing videos! Thank you!
@ghostfreak19024 жыл бұрын
Thx so much for all these great videos and explenations way better than my teacher and all 😅 i learn a lot here :p.
@filip_g4 жыл бұрын
So this is PASSING DATA BETWEEN ACTIVITIES basic level. What would you say are advanced and pro level characteristics of this subject? Do you have any videos deconstructing data classes and other ways of accessing data? Thank you for videos and I would be very thankful for your reply.
@PhilippLackner4 жыл бұрын
checkout parcelables. With those you can pass data classes as extras.
@janihirvinen78322 жыл бұрын
What a great lectures you have. Keep on going. What about if you want to pass data from mainactivity to a fragment that is running in ViewPager2? I have looked few of your slide vids but none of them send values to fragments
@VenewebTV3 жыл бұрын
Excellent couse, very helpful, regards from Venezuela
@kiikaala2 жыл бұрын
Thanks very much! You are my new best friend!
@turanbalayev3776 Жыл бұрын
Thanks a lot, it was a great video. My IDE tells me getSerializableExtra is deprecated, could you please suggest something new to pass objects between Activities?
@gutic48244 жыл бұрын
Nice.All clear with your explanations . Thanks
@PhilippLackner4 жыл бұрын
Thanks, glad you enjoyed it!
@agilsantosa56294 жыл бұрын
Thanks, always update
@gmlimon Жыл бұрын
Hey thanks! Your video is very helpful.
@domagojmarinoivc76003 жыл бұрын
best tutorial ever!!!
@최영수-r3m3 жыл бұрын
cool!! Thank you so much!!! this video just saved my life xD
@tochukwuokey-munonye78844 жыл бұрын
Nice, all my friends must subscribe..Can we also use sharedpreferences to pass details between activities.
@joinpsye70452 жыл бұрын
Mr poop in China isn't 21 years old. I know him personally. )))
@NawafAlLawatiPhazeRo Жыл бұрын
Mr.Poop killed me xdd
@jessecuster82852 жыл бұрын
Neat. A great lecture!
@guy14074 жыл бұрын
amazing data :)
@lernkonto88132 жыл бұрын
@Philipp Lackner thx for your content! But can you explain to me whats up with "SecondActivity::class.java"? I thought this is about kotlin? This "class.java" confuses me... And second how is "it" a reference to the "Intent" object? We never defined this variable "it".
@guitarcat012 жыл бұрын
Kotlin is a programming language built on top of Java, and it runs on JVM So essentially, a Kotlin class is a Java Class. "it" is used kind of a context inside the .also It is something simillar to say Intent(this, SecondActivity::class.java).putExtra("EXTRA_STRING", extraString), but the .also gets the whole setence and allow us to use only "it" to reference it
@TheImaginativeSachin2 жыл бұрын
it basically refers to the object of the extension fucntion
@daiyrkanybekov85753 жыл бұрын
Good Tutorial BUT when you leave age filed empty and click button, app is close immediately maybe it must have try catch?
@KingFuYouTube3 жыл бұрын
try val age = etAge.text.toString().toIntOrNull() on MainActivity.kt
@rohitr.sekhar21953 жыл бұрын
Shouldn't we be using Parcelable over Serializable to pass classes ?
@如炼截磨金3 жыл бұрын
How could we pass objects from one to another activity?
@jishnunkrishnan57833 жыл бұрын
Thank You, What 'also' does in android?
@shubhamsen79954 ай бұрын
i'm facing problem while inserting my data in edit text not getting the data in text view of next activity pls help
@marypaul96272 жыл бұрын
EEEEExcelllent.thank you
@samuelmaucaille7022 жыл бұрын
Hi, could I do it using pop up fragments?
@Zelinsky142 жыл бұрын
Hey! I have 3 activities say A,B,C I transition through A,B and then C but I want data from activity A to be brought to C how should I do that?
@NabeelHaider3 жыл бұрын
How to pass an Array of Person Class in intent between activities. Please tell.
@ihsannuruliman36562 жыл бұрын
what's the difference between also vs apply vs run?
@henriquepetters4 жыл бұрын
And what if i wanted to change a placeholder(%s) in strings.xml file with a putExtra?
@johna80854 жыл бұрын
First off all, thx for your amazing work!! tvPerson.text = person.toString give you all the data of the class. is it possible, using "person", extract only one field? Example tvName.text = personne.name.toString tvAge.text = personne.age.toString..
@PhilippLackner4 жыл бұрын
yes sure, exactly as you did it
@d.ndriotis92092 жыл бұрын
Personal Note 14:49 For java : public class Person implements java.io.Serializable {...} In java you can't define a class as data type class. You have to create your own methods if you want a data class.The disadvantage is that you end up with a lot of boilerplate code
@sidharthkumar67844 жыл бұрын
Pls make one video on findviewbyid in kotlin
@duongsancho18062 жыл бұрын
i am struggling with view binding using it to pass the binding.tvPerson.text = personString keeps saying unresolved refrence:tvPerson . dont know what to do. Save me philipp:(
@rotimidokun Жыл бұрын
Don't forget to add .toString() to the end of personString as well like this - binding.tvPerson.text = personString.toSring()
@dnsl53843 жыл бұрын
your contents are awesome but my negative mind often say that "there are many android programmers and many useful apps out there why you want to learn it"😞
@PhilippLackner3 жыл бұрын
you can say that about everything. Let me tell you, there are so many trash developers out there, if you just put in the work and practice you're already ahead of so many of them. Most people are lazy af
@dnsl53843 жыл бұрын
@@PhilippLackner thank you 🔥
@asiis181 Жыл бұрын
u neither use dataBinding nor viewBinding then how does it pick the id of xml, plz let me know
@benbouzaadel Жыл бұрын
he doesnt use view binding because view binding is new feature in android studio this video is relatively old he has new video on view binding but if you can follow along the video just use view binding instead i am following them and just using view binding here is the video that i was talking about : kzbin.info/www/bejne/sGGpY4SKdrCmjbc&pp=ygUbdmlldyBiaW5kaW5nIHBoaWxpcCBsYWNrbmVy
@Djinn6672 жыл бұрын
How did you grab the elements from the activity without using findViewByID?
@tuncayermis Жыл бұрын
fiendViewById is used to reference views in Java. In kotlin you just reference them by their names.
@AkiyamaTheekshana Жыл бұрын
How to pass Image using this?
@killerbidk477 Жыл бұрын
Okay but how can you make the data stays in the second activity even after closing the app so u can find them again?
@followying39211 ай бұрын
llocal DATABASE :)
@killerbidk47711 ай бұрын
@followying392 my reply was long time ago when i didn't know what local database even meant that time xd thank you tho
@sardorkholmetov9913 жыл бұрын
can I pass data to another activity without opening it and how to do it? just without "startActivity(it)" line?
@PhilippLackner3 жыл бұрын
No why would you want to do that
@sardorkholmetov9913 жыл бұрын
@@PhilippLackner I wanna pass data to custom toast, I tried to do it like this just for experiment, but I couldn't
@ramadhansaputra3812 Жыл бұрын
serializable, putextra
@divyanshusharma56142 жыл бұрын
pls provide source code
@gloria32164 ай бұрын
Mr. Poop 🥲😍
@alroygama61664 жыл бұрын
Mr.poop😂😂
@jleo30832 жыл бұрын
Like your contents, but I am just very confused that, why Mr.Poop and why China....Sounds very racism
@billmolloy2264 Жыл бұрын
bye - bye
@rahulgarg6393 Жыл бұрын
sed for china
@eduardomarin75754 жыл бұрын
Tutorial for Java? Someday? :(
@PhilippLackner4 жыл бұрын
Nope sorry, outdated for Android, won't come on my channel
@GakisStylianos4 жыл бұрын
Hello man, I want to say that I really like your content and your Instagram account, but I have something I wanted to say about videos like these. The title is about passing data in activities, but then you spend approximately 4.5 minutes building the layouts. This I believe makes people less interested, or makes them click away. I would suggest that when you have a video with a specific title, you talk about that thing only. Building the views should be something that you shouldn't have to do every single video. It makes me feel like when I want to learn something, if it's you video I have to filter through a portion of the video which is irrelevant to get to them point that I am interested in. I just think you should be a bit more focused on what the title says and don't assume every single video that the viewer is an absolute beginner who has never opened Android Studio before. All this is just my opinion and I do not want you to take offense, I just think your content would improve if you did that :-)
@PhilippLackner4 жыл бұрын
Thank you so much for taking your time, comments like these help me the most to improve! What you said makes perfect sense and I will think about how I do it in future. The next Videos will still be like that because I pre produced them. But really, I wish I could get more constructive feedback like this
@GakisStylianos4 жыл бұрын
@@PhilippLackner That is awesome, keep doing what you are doing, and I am sure you will just keep improving anyway!
@cherylm82104 жыл бұрын
I think it can be helpful for beginners (considering its android fundamentals and passing data between activities which is pretty basic, chances are there will be lots of beginners viewing). Maybe add a link to skip the making layout parts for more advanced viewers.
@akhileshrupaji59364 жыл бұрын
@@PhilippLackner I Have Just Started Android Studio... Please Give Content Very Basically... The Way the Videos are there in these playlist those videos are really understanding perfectly...Please Make videos from Scratch any type of concept give detailed Information ....Admin ...Really really ur Great... Love you From INDIA❤❤❤❤❤💗💗💗
@PhilippLackner4 жыл бұрын
@@akhileshrupaji5936 thanks a lot, that's the right Playlist for you if you want basic android content 👍👍
@BlissinSerenity Жыл бұрын
What about images, how to pass images, if u put a tutorial about passing data other than strings would that change whole meaning of a "FREE KZbin TUTORIAL", come on for once, why dont you youtube teachers put off the illusion of giving free educational tutorials which are of absolutely no use
@Muhammad_Waleed3 ай бұрын
I am all for freedom of speech but every once in a while people like you force me to reconsider. If you can't give constructive criticism then you shouldn't criticize at all
@koy8670 Жыл бұрын
Hi bro why doesn't my firestore query work when using the intent data passed? The query is get using an id from a shopping item but works when I get my own uid using the auth.getcurrentuser.getuid( ). Hope you can help.
@tochukwuokey-munonye78844 жыл бұрын
Nice, all my friends must subscribe..Can we also use sharedpreferences to pass details between activities.
@i54703 жыл бұрын
How to solve NullPointerException in serializable object? How can we put the default value?
@tochukwuokey-munonye78844 жыл бұрын
Nice, all my friends must subscribe..Can we also use sharedpreferences to pass details between activities.
@tochukwuokey-munonye78844 жыл бұрын
Nice, all my friends must subscribe..Can we also use sharedpreferences to pass details between activities.
@PhilippLackner4 жыл бұрын
Thanks, you should never use SharedPreferences for that, instead use intent extras
@tochukwuokey-munonye78844 жыл бұрын
@@PhilippLackner what of when navigating from activity to fragment