case R.id.bottom_home: error: Constant expression required. How do I fix this please help😢 13:30
Жыл бұрын
Same error
@ДанилАнуфриев-э3к Жыл бұрын
I've met a similar error. Click on switch, then alt+enter and "replace switch with if"
@ohmwai Жыл бұрын
This works. Thank you.
@abat121 Жыл бұрын
use if-else constuction
@contentisking6702 Жыл бұрын
@@ДанилАнуфриев-э3к❤❤❤❤❤ 😭😭😭❤❤❤❤❤❤ thanku thanku thanku so much 😊🙏🙏🙏🙏🙏🙏❤❤❤❤❤❤❤❤
@faizaali8009 Жыл бұрын
Very nice videos It helped me in my project very much....Thankyou very much. I'll recommend your videos to my fellows as well..👍
@android_knowledge Жыл бұрын
Thanks, a lot :-)
@grinplay712710 ай бұрын
Hello, whu my icons are jumping if i remove slide animations, can it be fixed?
@novayoutube2937 Жыл бұрын
Awesome very helpful video 👏
@android_knowledge Жыл бұрын
Thanks :-)
@zareen_kitchen Жыл бұрын
Thanks for sharing 😊
@android_knowledge Жыл бұрын
😊👍🏻
@thusith-tec307 Жыл бұрын
Thank you ❤️
@android_knowledge Жыл бұрын
:-)
@KhantSiThuPhyo-c5c Жыл бұрын
Ohh is was not following the principal of DRY.How can we refector this ?
@user-fx5uz6hg5f Жыл бұрын
Hello, I need help, where to place it .setOnItemSelectedListener, in the Switch section it gives me an error, The error is: Constant expression required, in the cases, the identifiers are written correctly, but I get that error, what is the reason for that?
@android_knowledge Жыл бұрын
Please, use if else instead of switch case :-)
@TheHugoSpy9 ай бұрын
@@android_knowledge i get Unexpected return value on all true and false now with an if else
@erva2641 Жыл бұрын
I have Error at the style tag "Element style must be declared" , at 03:50
@android_knowledge Жыл бұрын
Please check the below link: stackoverflow.com/questions/20790708/element-must-be-declared-error-for-tag-shape
@RonalRomeroVergel Жыл бұрын
bro can u do this for kotlin pls?
@kevinpermana62149 ай бұрын
why android BottomAppBar have extra bottom padding?
@pushtidave27139 ай бұрын
hello sir i need help when i run a code i get error on switch case. this is the error message "Constant expression required"
@ArundhaVaalu9 ай бұрын
Same error for me
@android_knowledge9 ай бұрын
Use if else instead of a switch case.
@ilyashero1666 Жыл бұрын
why do you recommend to use fragment instead of activity in bottom navigation bar?
@android_knowledge Жыл бұрын
In activity, same code is repeated multiple times while in fragments you can reduce the repetition of code. For more detail, refer the below link: stackoverflow.com/questions/50119455/is-it-not-recommended-to-use-activities-with-bottom-navigation
@meetb26 Жыл бұрын
@@android_knowledge activity is repeated created and fragment replace
@meetb26 Жыл бұрын
correct
@HiteshRaj-t7x Жыл бұрын
Cannot resolve method 'getItemId' in 'View' how to resolve this
@sammyy0_ Жыл бұрын
when I'm in an item, the item becomes appropriately white but its background becomes kind of pink...do u know why?
@android_knowledge Жыл бұрын
Are you using latest android studio flamingo? If yes, then it's because of material active indicator. If no, then give theme accordingly and also you can create a seperate selector for it.
@hammadansari1031 Жыл бұрын
@Android Knowledge "bottom_menu" is empty in design. how can i solve this?
@HyperKK7 ай бұрын
Change background color it seems like its blank but itd actually becoz of white color background
@nosirovbehzodjon Жыл бұрын
5:34 item_selector
@We4rule Жыл бұрын
Thank you
@shazneenmukhtarshaikh3925 Жыл бұрын
Keep going 🥳
@android_knowledge Жыл бұрын
😊👍🏻
Жыл бұрын
I removed (finish) because I don't want the application to exit as soon as you click the back button and everything works, but the problem is that when you click the back button, the selected item is not marked with a selector it going random
@samriddhpandey745 Жыл бұрын
same issue
Жыл бұрын
@@samriddhpandey745 put something like this @Override protected void onResume() { super.onResume(); BottomNavigationView bottomNavigationView = findViewById(R.id.MENUITEM); bottomNavigationView.setSelectedItemId(R.id.MENUITEM); }
@arunappu9692 Жыл бұрын
Error, How to resolve this? Cannot resolve method 'setOnItemSelectedListener' in 'BottomNavigationView' Cannot resolve method 'getItemId()'
@android_knowledge Жыл бұрын
The variable might not be defined properly. You can check the below link for more details: stackoverflow.com/questions/37706672/cannot-resolve-method-finditemint
@gopalmahato6459 Жыл бұрын
How to show text under home icon , search icon, settings icon
@android_knowledge Жыл бұрын
Set labelVisibilityMode as "label" in activity _main.
@Sk_earningOfficial-1 Жыл бұрын
@@android_knowledge and how to change the text colour ??
Жыл бұрын
@@Sk_earningOfficial-1 Item text color
@SG-fn1gz Жыл бұрын
I have error on the switch case id
@android_knowledge Жыл бұрын
Please use if else instead of switch case.
@DUCK-ox9mu Жыл бұрын
"bottom_menu" is empty in design. how can i solve this?
@okif98476 ай бұрын
Same problem
@claudiu8480 Жыл бұрын
Source code ?
@android_knowledge Жыл бұрын
I have added source code in the description box, please check :-)
@varunsen2802 Жыл бұрын
tysm man
@randomcontrol Жыл бұрын
As an iOS developer I really hope that's not the way it needs to be done on Android!
@android_knowledge Жыл бұрын
I have mentioned in the video that bottom navigation with activities is not a recommended way instead use fragments. This video is just for an experimental purpose :-)