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

Поделиться
HTML-код
  • Опубликовано: 4 окт 2024
  • НаукаНаука

Комментарии • 123

  • @Mirtguitar
    @Mirtguitar 10 месяцев назад +5

    Very clear tutorial.

  • @harshrana2004
    @harshrana2004 7 месяцев назад +1

    Thank you!! You don't have idea, how your video helped at my project preparation work...

  • @eduardoreyes5203
    @eduardoreyes5203 Год назад +2

    Nice video, awesome explanation, it works perfect on my app!

  • @ship-yw7xk
    @ship-yw7xk 5 месяцев назад

    It is perfect, perfect!

  • @FilipeeX
    @FilipeeX 2 месяца назад +1

    What if you need to have multiple activities? Do you just copy the bottom menu to that new activity?

    • @AnimateMJ
      @AnimateMJ Месяц назад

      yes 100%

    • @nguyendcb
      @nguyendcb 7 дней назад

      No, you need to use fragments

    • @FilipeeX
      @FilipeeX 7 дней назад

      @@nguyendcb figured it out by now but thx lol

  • @oxuanhieu5753
    @oxuanhieu5753 11 месяцев назад +1

    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?

  • @FSCO_sahilsatishchavan
    @FSCO_sahilsatishchavan Год назад +2

    Thx bro

  • @Sky-nq5pp
    @Sky-nq5pp 6 месяцев назад +1

    Thx a lot legen :)

  • @gitauyganjo7257
    @gitauyganjo7257 Год назад +6

    Error: constant expression required. In my switch case

    • @gitauyganjo7257
      @gitauyganjo7257 Год назад

      please help

    • @deno8322
      @deno8322 Год назад

      @@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 Год назад

      Hello, were you able to solve it?

    • @gitauyganjo7257
      @gitauyganjo7257 Год назад +3

      @@El_Master533 yes. I just changed the switch case to an if else statement

    • @bauerdev
      @bauerdev Год назад

      mine has the same error, can you help me?

  • @sonicpubggaming402
    @sonicpubggaming402 Год назад +8

    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 Год назад +1

      Did you find the answer?

    • @onei3533
      @onei3533 Год назад +1

      found a solution just use if instead switch

    • @alimishazwan3687
      @alimishazwan3687 Год назад +21

      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 Год назад +7

      ​@@alo_lolago to switch click alt+ enter then choose if . Problem will be solved

    • @kevinkrisdianto132
      @kevinkrisdianto132 Год назад

      ​@@alimishazwan3687 thanks bro

  • @javenleathercrafts
    @javenleathercrafts 2 месяца назад

    please help me , i only need 2 buttons for this project and i folloed your steps. On the emulator it shows 4 buttons 2 same pairs but on the xml file there is only one pair and the layout i want

  • @attruong2341
    @attruong2341 Год назад +2

    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 Год назад

      same problem

    • @attruong2341
      @attruong2341 Год назад

      @@neoplasia536 I've change the framelayout in Activity_Main into this and my code can run

    • @johnk.849
      @johnk.849 11 месяцев назад

      What do you see where the fragmentLayout is ?

    • @ThatOneKid499
      @ThatOneKid499 11 месяцев назад

      @@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 11 месяцев назад

      you can try to fix the height and width of FrameLayout to match_parent, i tried and succeeded

  • @MrYou845
    @MrYou845 4 месяца назад

    मेने भी अपने app में bottom navigation के साथ fragments का use लिया पर मेरा app बार बार क्रैश हो रहा है इसका कुछ सलूशन पता हो तो बताना ,मेने हर एक fregment में api calling के through data load करवाया है जब data जल्दी load हो जाता है तब app क्रैश नहीं होता है पर जब धीरे load होता है या नहीं होता है तब app क्रैश हो जाता है इसका कुछ उपाय हो तो बताना

  • @RiteshVerma-jf3nq
    @RiteshVerma-jf3nq 10 месяцев назад

    Thankyou sirrrrrrr

  • @chinhnguyen7668
    @chinhnguyen7668 Год назад

    thank you

  • @AhmadJS
    @AhmadJS Год назад +1

    💚

  • @muhammadariffahmi9088
    @muhammadariffahmi9088 9 месяцев назад

    thanks bro!

  • @mikaeljotsa6290
    @mikaeljotsa6290 11 месяцев назад +1

    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 11 месяцев назад +2

      Someone help me, the screens are not changing. they are all white since I defined colors etc😓

  • @bauerdev
    @bauerdev Год назад +3

    Error: constant expression required. In my switch case. someone help me?

    • @matze_5737
      @matze_5737 Год назад +8

      you need to use if/else statements

    • @shortbydurgaprasad
      @shortbydurgaprasad Год назад

      ​@@matze_5737how

    • @devuslee3219
      @devuslee3219 5 месяцев назад

      @@matze_5737 legendary comment. This solved my problem also

  • @Master_Ali_Coder
    @Master_Ali_Coder 9 месяцев назад

    in my studio bottomNavigationView Not show Please Help

  • @jarjaju9524
    @jarjaju9524 9 месяцев назад

    My panel buttons do not switch, that is, when switching, the home button is always active. Help me, please

  • @electronicaparatodos9841
    @electronicaparatodos9841 8 месяцев назад

    la parte de arriba del botton navigation se puede quitar

  • @HiteshRaj-t7x
    @HiteshRaj-t7x 10 месяцев назад

    Cannot resolve method 'getItemId' in 'View' how to resolve this

  • @Deep-codes
    @Deep-codes Год назад +1

    7:23

  • @cypheron3030
    @cypheron3030 Год назад +1

    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 8 месяцев назад

      you need to have a groovy gradle build had same problem

  • @riguchazo1
    @riguchazo1 6 месяцев назад +1

    very fast; quickly

  • @water8garden
    @water8garden Год назад

    can't process with MainActivity- code problem

    • @johnk.849
      @johnk.849 11 месяцев назад

      What error are you getting ?

  • @Lily_-_-
    @Lily_-_- Год назад

    How do I contact you. Please respond.

  • @Jeet_Chudasma
    @Jeet_Chudasma Год назад

    I have applied all vector asset but after adding in bottom navigation it is giving me home icon

    • @johnk.849
      @johnk.849 11 месяцев назад

      Home icon for all bottom nav items ??

    • @Jeet_Chudasma
      @Jeet_Chudasma 11 месяцев назад

      @@johnk.849 yes but it's solved now.

    • @Gustavo_788
      @Gustavo_788 11 месяцев назад

      Someone help me, the screens are not changing. they are all white since I defined colors etc😓

    • @devspuch835
      @devspuch835 10 месяцев назад

      @@Gustavo_788 it is beacause home icon - white.

    • @devspuch835
      @devspuch835 10 месяцев назад +1

      android:background="@color/black"
      app:itemTextColor="@color/white"
      app:itemIconTint="@color/white"

  • @chosen3494
    @chosen3494 8 месяцев назад +1

    Guys btw if the contents are not appearing remember to set the top constraint as well for FrameLayout 2:34

    • @geraldjohnsotto4960
      @geraldjohnsotto4960 7 месяцев назад

      Thanks bro

    • @Ollarzabal22
      @Ollarzabal22 29 дней назад

      thanks for the assist, was starting to drive me nuts

    • @dfoors1038
      @dfoors1038 15 дней назад

      спасибо, бро!!! Очень сильно помог!!!

  • @Mirtguitar
    @Mirtguitar 10 месяцев назад +1

    Everything went well, until the ActivityMainBinding. Good tutorial though.

    • @castero465
      @castero465 10 месяцев назад

      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 10 месяцев назад +1

      @@castero465 Thank you mate, i had a typo in the binding name, now it works.

    • @the_one_from_beyond
      @the_one_from_beyond 4 месяца назад +1

      @@castero465 sorry bro i didn't understand i even didn't see where author made the class next to name of xml activity Binding

  • @abdelhadibecheikh
    @abdelhadibecheikh Год назад

    if you have more then 3 items there will be problème

    • @johnk.849
      @johnk.849 11 месяцев назад

      What problem do you strike when you have more than 3 items ?

  • @idelvertyondouii5787
    @idelvertyondouii5787 Год назад

    switch required integer

  • @berkeleymorrison
    @berkeleymorrison 6 месяцев назад

    wow thx for the tutorial but now i made sure of that android development is a huge joke

  • @tobwell4701
    @tobwell4701 10 месяцев назад

    Could be better if you provide the scripts

  • @Attee_Q
    @Attee_Q Год назад +16

    JAVA? In 2023? 🤣🤣🤣🤣🤣🤣

    • @kenny.mesquita
      @kenny.mesquita Год назад +23

      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 Год назад +19

      @@Attee_Q so I'm a android developer, and I worK with java.

    • @Attee_Q
      @Attee_Q Год назад

      @@kenny.mesquita Time to change to Kotlin.

    • @Lines4-w2c
      @Lines4-w2c Год назад +6

      ​@@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 Год назад +11

      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 Год назад +1

      Set on click listener nhi call karna hai set on selected item method call hoga

    • @kamil2k111
      @kamil2k111 Год назад

      @@leychelle thx 👍

    • @shuraj_03
      @shuraj_03 10 месяцев назад

      @@leychelle I have same problem my activity name is pat_home and my layout name is pathome.xml

    • @castero465
      @castero465 10 месяцев назад

      thank you you are a life saver for real@@leychelle