How to Implement Bottom Navigation with Activities | Android Studio Tutorial

  Рет қаралды 44,481

Android Knowledge

Android Knowledge

Күн бұрын

Пікірлер: 63
@EdcelJohnLorenzMLero
@EdcelJohnLorenzMLero Жыл бұрын
case R.id.bottom_home: error: Constant expression required. How do I fix this please help😢 13:30
Жыл бұрын
Same error
@ДанилАнуфриев-э3к
@ДанилАнуфриев-э3к Жыл бұрын
I've met a similar error. Click on switch, then alt+enter and "replace switch with if"
@ohmwai
@ohmwai Жыл бұрын
This works. Thank you.
@abat121
@abat121 Жыл бұрын
use if-else constuction
@contentisking6702
@contentisking6702 Жыл бұрын
​@@ДанилАнуфриев-э3к❤❤❤❤❤ 😭😭😭❤❤❤❤❤❤ thanku thanku thanku so much 😊🙏🙏🙏🙏🙏🙏❤❤❤❤❤❤❤❤
@faizaali8009
@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
@android_knowledge Жыл бұрын
Thanks, a lot :-)
@grinplay7127
@grinplay7127 10 ай бұрын
Hello, whu my icons are jumping if i remove slide animations, can it be fixed?
@novayoutube2937
@novayoutube2937 Жыл бұрын
Awesome very helpful video 👏
@android_knowledge
@android_knowledge Жыл бұрын
Thanks :-)
@zareen_kitchen
@zareen_kitchen Жыл бұрын
Thanks for sharing 😊
@android_knowledge
@android_knowledge Жыл бұрын
😊👍🏻
@thusith-tec307
@thusith-tec307 Жыл бұрын
Thank you ❤️
@android_knowledge
@android_knowledge Жыл бұрын
:-)
@KhantSiThuPhyo-c5c
@KhantSiThuPhyo-c5c Жыл бұрын
Ohh is was not following the principal of DRY.How can we refector this ?
@user-fx5uz6hg5f
@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
@android_knowledge Жыл бұрын
Please, use if else instead of switch case :-)
@TheHugoSpy
@TheHugoSpy 9 ай бұрын
@@android_knowledge i get Unexpected return value on all true and false now with an if else
@erva2641
@erva2641 Жыл бұрын
I have Error at the style tag "Element style must be declared" , at 03:50
@android_knowledge
@android_knowledge Жыл бұрын
Please check the below link: stackoverflow.com/questions/20790708/element-must-be-declared-error-for-tag-shape
@RonalRomeroVergel
@RonalRomeroVergel Жыл бұрын
bro can u do this for kotlin pls?
@kevinpermana6214
@kevinpermana6214 9 ай бұрын
why android BottomAppBar have extra bottom padding?
@pushtidave2713
@pushtidave2713 9 ай бұрын
hello sir i need help when i run a code i get error on switch case. this is the error message "Constant expression required"
@ArundhaVaalu
@ArundhaVaalu 9 ай бұрын
Same error for me
@android_knowledge
@android_knowledge 9 ай бұрын
Use if else instead of a switch case.
@ilyashero1666
@ilyashero1666 Жыл бұрын
why do you recommend to use fragment instead of activity in bottom navigation bar?
@android_knowledge
@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
@meetb26 Жыл бұрын
@@android_knowledge activity is repeated created and fragment replace
@meetb26
@meetb26 Жыл бұрын
correct
@HiteshRaj-t7x
@HiteshRaj-t7x Жыл бұрын
Cannot resolve method 'getItemId' in 'View' how to resolve this
@sammyy0_
@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
@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
@hammadansari1031 Жыл бұрын
@Android Knowledge "bottom_menu" is empty in design. how can i solve this?
@HyperKK
@HyperKK 7 ай бұрын
Change background color it seems like its blank but itd actually becoz of white color background
@nosirovbehzodjon
@nosirovbehzodjon Жыл бұрын
5:34 item_selector
@We4rule
@We4rule Жыл бұрын
Thank you
@shazneenmukhtarshaikh3925
@shazneenmukhtarshaikh3925 Жыл бұрын
Keep going 🥳
@android_knowledge
@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
@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
@arunappu9692 Жыл бұрын
Error, How to resolve this? Cannot resolve method 'setOnItemSelectedListener' in 'BottomNavigationView' Cannot resolve method 'getItemId()'
@android_knowledge
@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
@gopalmahato6459 Жыл бұрын
How to show text under home icon , search icon, settings icon
@android_knowledge
@android_knowledge Жыл бұрын
Set labelVisibilityMode as "label" in activity _main.
@Sk_earningOfficial-1
@Sk_earningOfficial-1 Жыл бұрын
@@android_knowledge and how to change the text colour ??
Жыл бұрын
@@Sk_earningOfficial-1 Item text color
@SG-fn1gz
@SG-fn1gz Жыл бұрын
I have error on the switch case id
@android_knowledge
@android_knowledge Жыл бұрын
Please use if else instead of switch case.
@DUCK-ox9mu
@DUCK-ox9mu Жыл бұрын
"bottom_menu" is empty in design. how can i solve this?
@okif9847
@okif9847 6 ай бұрын
Same problem
@claudiu8480
@claudiu8480 Жыл бұрын
Source code ?
@android_knowledge
@android_knowledge Жыл бұрын
I have added source code in the description box, please check :-)
@varunsen2802
@varunsen2802 Жыл бұрын
tysm man
@randomcontrol
@randomcontrol Жыл бұрын
As an iOS developer I really hope that's not the way it needs to be done on Android!
@android_knowledge
@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 :-)
@gayatriprajapati7392
@gayatriprajapati7392 Жыл бұрын
Keep Going :)
@android_knowledge
@android_knowledge Жыл бұрын
Thank you 😊
Фрагменты Android
2:08:41
Surf Tech
Рет қаралды 2,4 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
Bottom Navigation Bar With Badges - UX With Material3
13:17
Philipp Lackner
Рет қаралды 58 М.
Navigation Drawer and Bottom Navigation View in Android Studio | Kotlin
27:36
API vs SDK: What’s the Difference?
3:42
Klippa
Рет қаралды 13 М.
Bottom Navigation Bar in Android in just 15 minutes
15:01
Technopoints
Рет қаралды 1,4 М.
Top App Bar (Toolbar) - UX With Material3
17:11
Philipp Lackner
Рет қаралды 28 М.
Bottom Navigation in Android Studio using Kotlin | Android Knowledge
16:25
Coding a Web Server in 25 Lines - Computerphile
17:49
Computerphile
Рет қаралды 358 М.