Yes. This video was an example of how to make a tutorial on something. Straight to the point. Showed all the code. Did not waste time on xml and other irrelevant parts. This was nice.
I finally made it through the complete playlist. Great job!!!. man, my confidence level has grown because of this and the Kotlin Fundamentals playlist.
Thanks for your course. So valuable content! From scratch i learned fundamentals, now i'm going to do something more complex. Your channel will help me!
I don't know about others, but I have to add the IntentFilter in onStart(), to make the Broadcast Receiver run. Also, can we define multiple dynamic Broadcast Receivers in the same manner. Please let me know.
Very useful video. But there's one thing I can't get. In your example broadcast receiver wouldn't be working if we minimise the app and go back to it. In our case BR registers only in onCreate() method, but activity doesn't get destroyed after minimising and method onCreate() wouldn't be recalled, therefore BR wouldn't be register. Probably we should register BR in onStart() or onResume()? Or I am wrong?
Hello Philipp, great video. Just a suggestion: video tutorials are usually kept as short as possible, so do you think that maybe you could put a list of things that may be important in a certain topic if they are not covered in your tutorial due to time constraint?
Hello, Merry Christmas! Thank you for sharing your knowledge. Can Broadcast Receiver be used to programmatically read other apps such as Messenger, Viber and Whatsapp ? .. without opening the respective app (of course with user permission). Thank you for acknowledging my question.
So basically in MainActivity we implement IntentFilter to be allowed to get such information from the system, also we registerReceiver to make it work if ACTION_AIRPLANE_MODE_CHANGED -> then let it know to AirplaneModeChangedReceiver and Toast the expression Is it true? :)
I understand everything but the part where you click airplane mode on the phone it send out the broad cast, for beside of naming the broadcasting class as AirPlaneModeChangeReceiver, the class is inheriting from broadcast receiver class., how is the Platform going to know if the getBooleanExtra("state") is going to return whether the airplane mode is turned on when you didn't specify anything about it.
I have a question, can I make a Brodcast Reciever on Project Type "Plugin" or it will not work? I am a bit confused because I am trying to build flutter app which interact with android native but I am getting a lot of Invalid Reference complier Errors when I tried to call a plugin Class from Flutter. However I am watching currently this Android Fundementel Serie, hopping to find something that helps me to know what I am doing wrong.
Only possible with static receivers that you need to declare in the manifest. And as I said in the video, most broadcast events don't work with static receivers anymore, you can find more information about that in the android documentation
Alternatively is to register the broadcast receiver in your custom Application subclass. Because your Application subclass will survive as far as your app is alive in memory (even when in the background) Android will invoke this registered receiver.
Do you know how to access call events using broadcast receiver? From android 10 onwards, it’s throwing READ_PRIVILEGED_PHONE_STATE issue. Any help is appreciated.
Hello Bro , I would have a question for you , I want the picture to change on the screen after I close the wifi, for example another picture when wifi is active, another picture when wifi is disabled, how can I do it, I will be very happy if you help.
Why in this line : lateinit var receiver : AirplaneModeChangedReceiver there is no "()" ? AirplaneModeChangedReceiver is a class and I thought must include ()
This 8 minutes video covered three important topics: broadcast receivers, memory leaks and intents filters. Highest standard of teaching! Bravo!
Yes. This video was an example of how to make a tutorial on something. Straight to the point. Showed all the code. Did not waste time on xml and other irrelevant parts. This was nice.
Thanks for that feedback, that makes me happy and I'm glad it helped you🙏
I watched all of ANDROID FUNDAMENTALS FOR BEGINNERS. Enjoyed every lesson and learned alot.
I finally made it through the complete playlist. Great job!!!. man, my confidence level has grown because of this and the Kotlin Fundamentals playlist.
You got this!
@@PhilippLackner what to do after this series?
This video is very informative and Straight to the point. Zero time waste.
I have learn a lot from this fundamental playlist, thank you :)
You're very welcome!
Thanks for your course. So valuable content! From scratch i learned fundamentals, now i'm going to do something more complex. Your channel will help me!
I finish all the video about fundamentals today.
Celebration!
Thank you, I got a lot from your tutorials!
Thanks Phillip, this was 100% helpful.
Thank you so much for this great playlist) You are really good at teaching
Thank you for this great playlist
VERY NICE SERIES
Thanks bud!
Thanks Phillip for this amazing effort
what playlis should i learn next after this ? maybe you can give us the roadmap for your playlist sir
I don't know about others, but I have to add the IntentFilter in onStart(), to make the Broadcast Receiver run. Also, can we define multiple dynamic Broadcast Receivers in the same manner. Please let me know.
Thanks for uploading this video.
Great vid again bud
Nice explanation sir, can I get any documentation or like pseudo code that what we need to do step by step?
is it worth to watch this playlist now..cause, this playlist had been uploaded years ago. plz reply
Very useful video. But there's one thing I can't get. In your example broadcast receiver wouldn't be working if we minimise the app and go back to it. In our case BR registers only in onCreate() method, but activity doesn't get destroyed after minimising and method onCreate() wouldn't be recalled, therefore BR wouldn't be register. Probably we should register BR in onStart() or onResume()? Or I am wrong?
Hello Philipp, great video. Just a suggestion: video tutorials are usually kept as short as possible, so do you think that maybe you could put a list of things that may be important in a certain topic if they are not covered in your tutorial due to time constraint?
Hello, Merry Christmas! Thank you for sharing your knowledge. Can Broadcast Receiver be used to programmatically read other apps such as Messenger, Viber and Whatsapp ? .. without opening the respective app (of course with user permission). Thank you for acknowledging my question.
Great video!!
So basically in MainActivity we implement IntentFilter to be allowed to get such information from the system, also we registerReceiver to make it work if ACTION_AIRPLANE_MODE_CHANGED -> then let it know to AirplaneModeChangedReceiver and Toast the expression
Is it true? :)
I understand everything but the part where you click airplane mode on the phone it send out the broad cast, for beside of naming the broadcasting class as AirPlaneModeChangeReceiver, the class is inheriting from broadcast receiver class., how is the Platform going to know if the getBooleanExtra("state") is going to return whether the airplane mode is turned on when you didn't specify anything about it.
I have a question, can I make a Brodcast Reciever on Project Type "Plugin" or it will not work?
I am a bit confused because I am trying to build flutter app which interact with android native but I am getting a lot of Invalid Reference complier Errors when I tried to call a plugin Class from Flutter.
However I am watching currently this Android Fundementel Serie, hopping to find something that helps me to know what I am doing wrong.
May I ask where to initialize broadcast receiver correctly? In application class , activity ,maby flow fragment ?
Hello, great video 👏
How can i keep the broadcast receiver run in background when i kill the apps?
Only possible with static receivers that you need to declare in the manifest. And as I said in the video, most broadcast events don't work with static receivers anymore, you can find more information about that in the android documentation
Alternatively is to register the broadcast receiver in your custom Application subclass. Because your Application subclass will survive as far as your app is alive in memory (even when in the background) Android will invoke this registered receiver.
Thanks 🙌
Does this channel only cover material in kotlin, exclusively?
good explanation, thanks!
You're welcome!
bro why stopped? continue this series bro ,it is toooooooooooooooooooooooooooooooooo good.
Thanks, it stopped because all the android basics are coverd
you are very awesome sir thanks 🙏
Thank you!
Do you know how to access call events using broadcast receiver? From android 10 onwards, it’s throwing READ_PRIVILEGED_PHONE_STATE issue. Any help is appreciated.
Bro please complete the whole series
Hello Bro , I would have a question for you , I want the picture to change on the screen after I close the wifi, for example another picture when wifi is active, another picture when wifi is disabled, how can I do it, I will be very happy if you help.
what is the next playlist we should watch after finishing this one ?
Hey what did u watch after this?
А можешь пожалуйста , записать урок по внедрению зависимостей hilt?
you need to write English on this channel, lol bro.
nice video
Hi, these broadcast receivers work on Android 10 ?, I guess because of new background restrictions they are absolute, please advise.
How to build broadcast receiver for incoming call?
Does this series end here?
Yes
Is this Series complete??
Ayoooo I completed this android fundamentals and kotlin newbie to pro alsoo. Let's gooo
By the way What do i do now?
thanks mate
Thank You
Bro from where you learnt android??
All over the internet, TH-cam and Google
Why in this line : lateinit var receiver : AirplaneModeChangedReceiver
there is no "()" ? AirplaneModeChangedReceiver is a class and I thought must include ()
It is kotlin, that is defining a type of variable, not instantiating an object. It is instantiated manually inside onCreate
Epic!
in this playlist you didn't talked about networking
he covered pretty much all the basic concepts in android :-? i don't think it's a good idea to get into Retrofit in a Android FUNDAMENTALS course :)))
onreceive, intentfilter, registerreceiver
Thank you
You're welcome