this series the best i have ever seen in youtube or other platforms thank you so much philipp. best regards
@kskfernando2945 Жыл бұрын
Hate to say it guys this series is pretty much deprecated now. We need a new one. Just take the core idea of the each video and look it up in the official Android documentation. Its the best way imo.
@adityakumdale6300 Жыл бұрын
can you share new code of this video if you have
@Luffy_2804 Жыл бұрын
no this part is still working @@adityakumdale6300
@opeyemicoker9104 Жыл бұрын
I had some issues with my menu bar, I created it as described in the tutorial but didn't see it. I later found a solution for it. I created a styles.xml file in res/values directory. then added this in the styles.xml file then also added the theme to my activity in my Manifest, like so
@ayushukey8465 Жыл бұрын
I did it still ii isnt working can you help?
@opeyemicoker9104 Жыл бұрын
@@ayushukey8465 do you see any error logs?
@SirDanMartin3 жыл бұрын
your tutorials are clear and a good pace to follow. Thanks for the great content.
@RohanSingh-fh3tt4 жыл бұрын
I loved your Android fundamental series, But can you make one on testing since it is the most basic fundamentals of android and yet many of the beginner android devs are unaware of testing, Hope you can extend this fundamental part with testing included
@PhilippLackner4 жыл бұрын
Thank you! I agree that testing is very important, but personally I think it is not a topic for beginners. Beginners should focus on getting their app to work no matter how. If they are able to do this they can focus on improving code quality and doing bigger projects with testing and stuff. However, that doesn't mean I won't make videos about testing, I will. But currently I can't say when that happens. After this series I will do some more advanced content
@Luffy_2804 Жыл бұрын
finally testing is going to happen
@Marinakulichok4 жыл бұрын
On your channel I am learning: english, kotlin, andr. fundam.))
@PhilippLackner4 жыл бұрын
Great!
@xuyuan47984 жыл бұрын
Same here!
@10xCode Жыл бұрын
Yeah bro. His english so clearly
@vinodpatildev2 жыл бұрын
How did you put Snackbar bellow appbar??
@michelmtg19793 жыл бұрын
Thank you Philipp, great tutorial, clear and very easy to follow
@webmobile21 Жыл бұрын
sir I cannot see menu, your app have default topbar but I don't, please help
@monkeystandards Жыл бұрын
I have the same problem. All code looks correct but no menu shows! I am sure there is something missing in my code but not sure what!
@Luffy_2804 Жыл бұрын
open layout -> go to values -> themes -> check if the actions bar is set to no action bar , if it is set to no action bar then set it to may be it will fix
@13enyamin799 ай бұрын
@@Luffy_2804 Thank you
@VenewebTV2 жыл бұрын
A very usefull video, another one, excellent, regards from Caracas, Venezuela
@neski3113 жыл бұрын
Sir, you just gained a new subscriber.
@sno-oze4 жыл бұрын
You don't need create directory "menu", then create resource file menu. Just choose Android resource file on res folder, resource type menu (!!!) and file name and it will be create folder menu with your menu resource file
@barsztik4 жыл бұрын
Hi. For first thanks a lot for this series. For second i have a question: You set the gear icon for settings but it's hiden and the Settings are in inflatable menu "..." with two othes items (Feedback and Close). When i change parameter to app:showAsAction="always" then gear icon for Settings is shown but Feedback and Close are still in "..." menu. What to do to have shown gear icon for Settings, and after click on it have Fedback and Close? Or, sayed in other way, how to change "..." icon to other, a gear icon for expample?
@GeorgeTrialonis2 жыл бұрын
Nothing shows when I click clipart. No clipart icons.
@fuadydheo31554 жыл бұрын
Its lit🔥
@PhilippLackner4 жыл бұрын
Thank you! ❤️
@Amandeep-uc7qh3 жыл бұрын
What should I do if I want to make 2 toolbars on same screen?
@daiyrkanybekov85754 жыл бұрын
Great tutorial Bro!!!
@okbaabdelghani62258 ай бұрын
that was very helpful
@Imelec4 жыл бұрын
Perfect thanks you ! But I'm looking to replace the title of the toolbar to an image but I'm having troubles...
@PhilippLackner4 жыл бұрын
use a custom toolbar
@aotahuu43752 жыл бұрын
Can anyone explain me why don't we need to call return super.onCreateOptionsMenu(menu);?
@boluwatifechristian5951 Жыл бұрын
The purpose of this function is to create a menu bar for an Android app.
@goobar4 жыл бұрын
Nice 👍
@PhilippLackner4 жыл бұрын
Thanks!
@norah82012 жыл бұрын
You do well thank you so much
@ucminh76303 жыл бұрын
Why it doesn't show toast when I click on icons :(
@bigotes20random862 жыл бұрын
Maybe you forgot to call .show() in each toast
@rotimidokun Жыл бұрын
@@bigotes20random86 My mistake
@yutaitadori73183 жыл бұрын
Thanks♥️
@guy14074 жыл бұрын
Thanks again for the tutorials. Posting my own code, for the benefit of all watchers. In my code, I use item.title to show the selected menu text also, since kotlin is new for me, I was interested in how to use when/else and also , how to do more than a single operation (use curlly { } ) ============= override fun onOptionsItemSelected(item: MenuItem): Boolean { when(item.itemId){ R.id.mnuClose -> finish() R.id.mnuSettings -> { val message = "You can do more than one operation with 'when'" Toast.makeText(this,message, Toast.LENGTH_SHORT).show() } else -> { Toast.makeText(this,"You clicked on " + item.title, Toast.LENGTH_SHORT).show() } } return true }//onOptionsItemSelected
@anurudhsingh33972 жыл бұрын
tysm buddy!
@DanielTobi00 Жыл бұрын
add the finish() func was a good one, this helped.
@hod642 ай бұрын
Obsolete. No app:showAsAction, no menuInflator, etc. Great tutorial otherwise. It would be nice to have an updated series.
@MarkAntonio-y3o Жыл бұрын
This course has a lot of problems in 2023
@mayor3367 Жыл бұрын
Hi. It is not his fault that android updates a lot of things too often and deprecates things too often. I am guessing you have a problem with the toolbar menu not appearing. This is as a result of the fact that the new android api uses Material design for its theming. You can change that by going to the themes.xml file within the values folder and changing the parent value from whatever is in there to Theme.AppCompat.Light.DarkActionBar. The color might be different because of the differences in options within the file but the toolbar should appear. I hope you don't get too frustrated with android development. It can be really frustrating sometimes and that frustration alone has lead me to abandon learning android development so many times.
@sadiqusman2965 Жыл бұрын
Ooo thank you!!!
@dmrm2161 Жыл бұрын
@@mayor3367 You are a genious. You save my life.
@Olegator56 Жыл бұрын
@@mayor3367 You really helped me a lot, thanks
@angelocagas5851 Жыл бұрын
@@mayor3367 thank you sir, you saved me from smashing my keyboard :)
@hanadanefa78374 жыл бұрын
make admob tutorial, the three types
@andyessien668510 ай бұрын
You know how to teach very easy slow and always trying to explain not like the other guy with the jetpack compose tutorial man that guy shouldn't be teaching.. talks too much and swipes on videos too much. But thanks to all of you though great content