Bottom Navigation Bar - Android Studio | Fragments | Java | 2023

  Рет қаралды 84,273

Foxandroid

Жыл бұрын

Bottom Navigation Bar - Android Studio | Fragments | Java | 2023
Follow me on Instagram: foxandroidblog
Follow me on Facebook: foxandroidblog
SUPPORT THE CHANNEL
------------------------------------------------------------------------------------------------------------------------------------------------------
Join this channel to access the perks :
kzbin.info/door/4Gwya_ODul8t9kjxsHm2dwjoin
Patreon Link: www.patreon.com/foxandroid
---------------------------------------------------------------------------------------------------------------------------------------------------------
Hey Developers,
In this video, I have explained :
* Alternate For StartActivityForResult Deprecated using Java
* RegisterForActivityResult using Java
How to Request Multiple Permissions in Android 11 using Java
kzbin.info/www/bejne/pJzEqnuIiZ13ldk
How to Request Multiple Permissions in Android 11 using Kotlin
kzbin.info/www/bejne/gmTan2eihMithMU
How to Save Image to External Storage using Java API 30
kzbin.info/www/bejne/pHKXiYqpfJ58hq8
Read Image From External Storage API 30+ using Kotlin
kzbin.info/www/bejne/e2XLlGiBl5t-hMU
Read Image From External Storage API 30+ using Java
kzbin.info/www/bejne/anfKq6Sencl_d9U
StartActivityForResult Deprecated Solution using Java
kzbin.info/www/bejne/bHaYgHeoorqno9E
#bottomnavigationview #android #java

Пікірлер: 111
@Mirtguitar
@Mirtguitar 7 ай бұрын
Very clear tutorial.
@eduardoreyes5203
@eduardoreyes5203 Жыл бұрын
Nice video, awesome explanation, it works perfect on my app!
@harshrana2004
@harshrana2004 4 ай бұрын
Thank you!! You don't have idea, how your video helped at my project preparation work...
@ship-yw7xk
@ship-yw7xk 2 ай бұрын
It is perfect, perfect!
@FSCO_sahilsatishchavan
@FSCO_sahilsatishchavan Жыл бұрын
Thx bro
@RiteshVerma-jf3nq
@RiteshVerma-jf3nq 7 ай бұрын
Thankyou sirrrrrrr
@chinhnguyen7668
@chinhnguyen7668 11 ай бұрын
thank you
@Sky-nq5pp
@Sky-nq5pp 3 ай бұрын
Thx a lot legen :)
@muhammadariffahmi9088
@muhammadariffahmi9088 6 ай бұрын
thanks bro!
@AhmadJS
@AhmadJS Жыл бұрын
💚
@oxuanhieu5753
@oxuanhieu5753 8 ай бұрын
I want as soon as I enter the app, the profile fragment will appear and the profile icon under the bottom bar will light up, how can I do that?
@Chicken_Man557
@Chicken_Man557 2 ай бұрын
thanks man you got bigg cojones
@jarjaju9524
@jarjaju9524 6 ай бұрын
My panel buttons do not switch, that is, when switching, the home button is always active. Help me, please
@Master_Ali_Coder
@Master_Ali_Coder 6 ай бұрын
in my studio bottomNavigationView Not show Please Help
@Lily_-_-
@Lily_-_- Жыл бұрын
How do I contact you. Please respond.
@electronicaparatodos9841
@electronicaparatodos9841 5 ай бұрын
la parte de arriba del botton navigation se puede quitar
@user-ws4lz5lo9m
@user-ws4lz5lo9m 7 ай бұрын
Cannot resolve method 'getItemId' in 'View' how to resolve this
@attruong2341
@attruong2341 9 ай бұрын
I can run the app smoothly, but when I log login my app doesn't show the fragment already been designed as in the video, I also converted the switch into if, it shows no problem, someone please help me.
@neoplasia536
@neoplasia536 9 ай бұрын
same problem
@attruong2341
@attruong2341 9 ай бұрын
@@neoplasia536 I've change the framelayout in Activity_Main into this and my code can run
@johnk.849
@johnk.849 9 ай бұрын
What do you see where the fragmentLayout is ?
@ThatOneKid499
@ThatOneKid499 8 ай бұрын
@@johnk.849 I have the same problem, I just see a white screen and the top bar with the time is slightly cut off.
@chiphanminh4640
@chiphanminh4640 8 ай бұрын
you can try to fix the height and width of FrameLayout to match_parent, i tried and succeeded
@Deep-codes
@Deep-codes 10 ай бұрын
7:23
@gitauyganjo7257
@gitauyganjo7257 11 ай бұрын
Error: constant expression required. In my switch case
@gitauyganjo7257
@gitauyganjo7257 11 ай бұрын
please help
@deno8322
@deno8322 11 ай бұрын
@@gitauyganjo7257 use if - else if like that: binding.bottomNavigationView.setOnItemSelectedListener(item -> { if (item.getItemId() == R.id.home) { replaceFragment(new HomeFragment()); } else if (item.getItemId() == R.id.settings) { replaceFragment(new SettingsFragment()); } else if (item.getItemId() == R.id.profile) { replaceFragment(new ProfileFragment()); } return true; });
@El_Master533
@El_Master533 11 ай бұрын
Hello, were you able to solve it?
@gitauyganjo7257
@gitauyganjo7257 11 ай бұрын
@@El_Master533 yes. I just changed the switch case to an if else statement
@bauerdev
@bauerdev 10 ай бұрын
mine has the same error, can you help me?
@idelvertyondouii5787
@idelvertyondouii5787 11 ай бұрын
switch required integer
@Nikitakaf
@Nikitakaf 3 ай бұрын
Use it if
@sonicpubggaming402
@sonicpubggaming402 Жыл бұрын
bro iam getting a Constant expresstion required for the switch case R.id.home i did same as u but its showing error, can u help with this...
@alo_lola
@alo_lola Жыл бұрын
Did you find the answer?
@onei3533
@onei3533 Жыл бұрын
found a solution just use if instead switch
@alimishazwan3687
@alimishazwan3687 Жыл бұрын
binding.bottomNavigationView.setOnItemSelectedListener(item -> { if (item.getItemId() == R.id.learn) { replaceFragment(new LearnFragment()); } else if (item.getItemId() == R.id.game) { replaceFragment(new GameFragment()); } else if (item.getItemId() == R.id.profile) { replaceFragment(new ProfileFragment()); } else { replaceFragment(new SettingFragment()); } return true; }); here the example to solve the problem. just use if statement
@contentisking6702
@contentisking6702 Жыл бұрын
​@@alo_lolago to switch click alt+ enter then choose if . Problem will be solved
@kevinkrisdianto132
@kevinkrisdianto132 10 ай бұрын
​@@alimishazwan3687 thanks bro
@riguchazo1
@riguchazo1 3 ай бұрын
very fast; quickly
@Jeet_Chudasma
@Jeet_Chudasma 11 ай бұрын
I have applied all vector asset but after adding in bottom navigation it is giving me home icon
@johnk.849
@johnk.849 9 ай бұрын
Home icon for all bottom nav items ??
@Jeet_Chudasma
@Jeet_Chudasma 9 ай бұрын
@@johnk.849 yes but it's solved now.
@Gustavo_788
@Gustavo_788 8 ай бұрын
Someone help me, the screens are not changing. they are all white since I defined colors etc😓
@devspuch835
@devspuch835 8 ай бұрын
@@Gustavo_788 it is beacause home icon - white.
@devspuch835
@devspuch835 8 ай бұрын
android:background="@color/black" app:itemTextColor="@color/white" app:itemIconTint="@color/white"
@water8garden
@water8garden 10 ай бұрын
can't process with MainActivity- code problem
@johnk.849
@johnk.849 9 ай бұрын
What error are you getting ?
@bauerdev
@bauerdev 10 ай бұрын
Error: constant expression required. In my switch case. someone help me?
@matze_5737
@matze_5737 10 ай бұрын
you need to use if/else statements
@shortbydurgaprasad
@shortbydurgaprasad 9 ай бұрын
​@@matze_5737how
@devuslee3219
@devuslee3219 2 ай бұрын
@@matze_5737 legendary comment. This solved my problem also
@cypheron3030
@cypheron3030 Жыл бұрын
buildFeatures { viewBinding True } My viewBinding doesn't show in purple
@taisiaapakina8115
@taisiaapakina8115 Жыл бұрын
have you figured out how to fix it? I have an error with this connection
@schmoopiegrob8758
@schmoopiegrob8758 Жыл бұрын
@@taisiaapakina8115 edit file res=>values=>colors.xml, two colors are given there, in the image and likeness, you add the colors that you need, if you don’t master it, then you climbed here early)
@cianely1047
@cianely1047 5 ай бұрын
you need to have a groovy gradle build had same problem
@mikaeljotsa6290
@mikaeljotsa6290 8 ай бұрын
It doesn't work, no fragment is displayed not even the default Home fragment, i have changed the switch to if
@Gustavo_788
@Gustavo_788 8 ай бұрын
Someone help me, the screens are not changing. they are all white since I defined colors etc😓
@MrYou845
@MrYou845 Ай бұрын
मेने भी अपने app में bottom navigation के साथ fragments का use लिया पर मेरा app बार बार क्रैश हो रहा है इसका कुछ सलूशन पता हो तो बताना ,मेने हर एक fregment में api calling के through data load करवाया है जब data जल्दी load हो जाता है तब app क्रैश नहीं होता है पर जब धीरे load होता है या नहीं होता है तब app क्रैश हो जाता है इसका कुछ उपाय हो तो बताना
@user-fq9lf8fj4v
@user-fq9lf8fj4v 9 ай бұрын
if you have more then 3 items there will be problème
@johnk.849
@johnk.849 9 ай бұрын
What problem do you strike when you have more than 3 items ?
@Mirtguitar
@Mirtguitar 7 ай бұрын
Everything went well, until the ActivityMainBinding. Good tutorial though.
@castero465
@castero465 7 ай бұрын
change it to name of the class next to name of xml activity Binding for example if the xml file name is avtivity_editable the binding name will be ActivityEditableBinding not ActivityMainBinding
@Mirtguitar
@Mirtguitar 7 ай бұрын
@@castero465 Thank you mate, i had a typo in the binding name, now it works.
@the_one_from_beyond
@the_one_from_beyond Ай бұрын
@@castero465 sorry bro i didn't understand i even didn't see where author made the class next to name of xml activity Binding
@tobwell4701
@tobwell4701 7 ай бұрын
Could be better if you provide the scripts
@JSchwift
@JSchwift 7 ай бұрын
This.
@the_one_from_beyond
@the_one_from_beyond Ай бұрын
@@JSchwift where?
@chosen3494
@chosen3494 5 ай бұрын
Guys btw if the contents are not appearing remember to set the top constraint as well for FrameLayout 2:34
@geraldjohnsotto4960
@geraldjohnsotto4960 5 ай бұрын
Thanks bro
@berkeleymorrison
@berkeleymorrison 3 ай бұрын
wow thx for the tutorial but now i made sure of that android development is a huge joke
@Attee_Q
@Attee_Q Жыл бұрын
JAVA? In 2023? 🤣🤣🤣🤣🤣🤣
@kenny.mesquita
@kenny.mesquita Жыл бұрын
I work in java, so it's necessary anyway.
@Attee_Q
@Attee_Q Жыл бұрын
@@kenny.mesquita Could be necessary, but not in Android development.
@kenny.mesquita
@kenny.mesquita Жыл бұрын
@@Attee_Q so I'm a android developer, and I worK with java.
@Attee_Q
@Attee_Q Жыл бұрын
@@kenny.mesquita Time to change to Kotlin.
@user-xu6mq3oq7x
@user-xu6mq3oq7x Жыл бұрын
​@@Attee_Q Give me a link of your Application, Time to change in kotlin 😂😂
@adityavishwakarma5514
@adityavishwakarma5514 Жыл бұрын
I dont know why but in starting and cant able to use binding.bottomNavigationView.setOnClicklistner Isme bottomnavigtionview use ni ho para pata ni kyu 😢😢😢😢😢
@leychelle
@leychelle Жыл бұрын
If your activity name is MainActivity then it will be ActivityMainBinding but for example if your activity name is LoginActivity it will be ActivityLoginBinding. You have to call binding according to the activity with it's respective layout file
@azlanahmed2811
@azlanahmed2811 Жыл бұрын
Set on click listener nhi call karna hai set on selected item method call hoga
@kamil2k111
@kamil2k111 11 ай бұрын
@@leychelle thx 👍
@shuraj_03
@shuraj_03 7 ай бұрын
@@leychelle I have same problem my activity name is pat_home and my layout name is pathome.xml
@castero465
@castero465 7 ай бұрын
thank you you are a life saver for real@@leychelle
Final muy increíble 😱
00:46
Juan De Dios Pantoja 2
Рет қаралды 50 МЛН
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
Simple maintenance. #leddisplay #ledscreen #ledwall #ledmodule #ledinstallation
0:19
LED Screen Factory-EagerLED
Рет қаралды 25 МЛН
Blue Mobile 📲 Best For Long Audio Call 📞 💙
0:41
Tech Official
Рет қаралды 1 МЛН
Спутниковый телефон #обзор #товары
0:35
Product show
Рет қаралды 2,2 МЛН
YOTAPHONE 2 - СПУСТЯ 10 ЛЕТ
15:13
ЗЕ МАККЕРС
Рет қаралды 178 М.