How to Implement Custom Bottom Navigation in Android Studio | CustomBottomNav | Android Coding

  Рет қаралды 43,136

Android Coding

Android Coding

Күн бұрын

Пікірлер: 141
@dudaclash1943
@dudaclash1943 2 жыл бұрын
hi, it seems that this library is not available anymore for java.
@sentilayshorts
@sentilayshorts 2 жыл бұрын
Class referenced in the layout file, com.etebarian.meowbottomnavigation.MeowBottomNavigation, was not found in the project or the libraries
@Prince-nv8ef
@Prince-nv8ef 2 жыл бұрын
add this if you are using kotlin: implementation 'com.etebarian:meow-bottom-navigation:1.3.1' add this if you are using Java: implementation 'com.etebarian:meow-bottom-navigation:1.3.1' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61"
@kusumawardhana5799
@kusumawardhana5799 2 жыл бұрын
can u solve it?
@BurakTugaySur
@BurakTugaySur 3 жыл бұрын
It was the design I've been looking for for a long time. You're amazing. Really thank you.
@manuelgmra
@manuelgmra 3 жыл бұрын
It was very simple to build a bottom navigation You explained very nice and simple. No errors following your directions
@oguzhanturkmen835
@oguzhanturkmen835 2 жыл бұрын
i cant find etebarian in xml. it doesnt exist. why?
@AndroidCoding
@AndroidCoding 2 жыл бұрын
Close your project. Reopen the project and check.
@oguzhanturkmen835
@oguzhanturkmen835 2 жыл бұрын
@@AndroidCoding i did it. but can't solve it. interesting
@AndroidCoding
@AndroidCoding 2 жыл бұрын
Build.Gradle : implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' Kindly check this library added or not.
@oguzhanturkmen835
@oguzhanturkmen835 2 жыл бұрын
I added already.
@mantalite46
@mantalite46 2 жыл бұрын
@@oguzhanturkmen835 SORUNU ÇÖZEBİLDİN Mİ
@cyberzypher3745
@cyberzypher3745 2 жыл бұрын
hi, so instead of fragments... I would like to use activity to show my Home Screen which is MainActivity.java please reply how do I do it
@sreenaths497
@sreenaths497 2 жыл бұрын
Fragment is the way to do it. Not activity
@etherealttv
@etherealttv 3 жыл бұрын
This is amazing!! Im making a journal app for my uni end of project and these tutorials are so useful thank you so much!!
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome. Thanks for giving your valuable feedback.
@rash5365
@rash5365 3 жыл бұрын
Is there any way to not display the toast messages? I tried without them but the app crashes when i press the buttons. Please help
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Delete only the toast message code, not the whole method.
@jRQLME
@jRQLME 3 жыл бұрын
is it possible to use activities instead of fragments? same layout but with activities..
@shelly6898
@shelly6898 3 жыл бұрын
yes there are tutorials on yt for that
@jRQLME
@jRQLME 3 жыл бұрын
@@shelly6898 found it thanks
@shelly6898
@shelly6898 3 жыл бұрын
@@jRQLME nice good for you!
@danishriaz5304
@danishriaz5304 3 жыл бұрын
@@jRQLME link plz
@kaziatiw667
@kaziatiw667 2 жыл бұрын
@Shelly could you please give that activities link
@sumanbachar2417
@sumanbachar2417 3 жыл бұрын
There is a problem . Suppose I created a edittext in one of the fragment . Whenever selecting the edittext the fragment refreshing which cause unable to enter value
@sumanbachar2417
@sumanbachar2417 3 жыл бұрын
Solution //////// onCreate meowBottomNavigation = findViewById(R.id.bn_dashboard); meowBottomNavigation.add(new MeowBottomNavigation.Model(1, R.drawable.ic_home)); meowBottomNavigation.add(new MeowBottomNavigation.Model(2, R.drawable.ic_library)); meowBottomNavigation.add(new MeowBottomNavigation.Model(3, R.drawable.ic_alert)); meowBottomNavigation.setOnShowListener(new MeowBottomNavigation.ShowListener() { @Override public void onShowItem(MeowBottomNavigation.Model item) { /* Fragment fragment = null; switch (item.getId()) { case 1: fragment = new HomeFragment(); break; case 2: fragment = new JobDetailsFragment(); break; case 3: fragment = new AlertFragment(); break; } loadFragment(fragment);*/ } }); meowBottomNavigation.show(2, true); loadFragment(new JobDetailsFragment()); meowBottomNavigation.setOnClickMenuListener(new MeowBottomNavigation.ClickListener() { @Override public void onClickItem(MeowBottomNavigation.Model item) { //Toast.makeText(getApplicationContext(), "Selected - "+String.valueOf(item.getId()), Toast.LENGTH_SHORT).show(); Fragment fragment = null; switch (item.getId()) { case 1: fragment = new HomeFragment(); break; case 2: fragment = new JobDetailsFragment(); break; case 3: fragment = new AlertFragment(); break; } loadFragment(fragment); } }); meowBottomNavigation.setOnReselectListener(new MeowBottomNavigation.ReselectListener() { @Override public void onReselectItem(MeowBottomNavigation.Model item) { //Toast.makeText(getApplicationContext(), "ReSelected - "+String.valueOf(item.getId()), Toast.LENGTH_SHORT).show(); } }); ////////////////// function private void loadFragment(Fragment fragment) { getSupportFragmentManager() .beginTransaction() .replace(R.id.fl_dashboard, fragment) .addToBackStack("TAG_CUSTOM") .setCustomAnimations(R.anim.fade_in,R.anim.fade_out) .commit(); }
@sumanbachar2417
@sumanbachar2417 3 жыл бұрын
@@VishalKumar-sm8bo what is the problem ?
@VishalKumar-sm8bo
@VishalKumar-sm8bo 3 жыл бұрын
@@sumanbachar2417 still refreshing
@VishalKumar-sm8bo
@VishalKumar-sm8bo 3 жыл бұрын
@@sumanbachar2417 still refreshing while using edit text
@sumanbachar2417
@sumanbachar2417 3 жыл бұрын
@@VishalKumar-sm8bo Give me your email id
@_ChetanaNagare
@_ChetanaNagare 3 жыл бұрын
Amazing tutorial 💯
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Thanks a lot
@peezynathaniel1977
@peezynathaniel1977 3 жыл бұрын
Magnificent design. . .
@vineetsinghrana
@vineetsinghrana 3 жыл бұрын
Bro what we have to do if I want to link button with website link. Means when some one tap on any button the given link will automatically open on this tab.
@awanderoosolutions9086
@awanderoosolutions9086 3 жыл бұрын
Did u get the solution to your Query ? i was also in need of the same
@sh1ttersgf400
@sh1ttersgf400 2 жыл бұрын
then dont init a new fragment but rather open a link
@willsimz144
@willsimz144 3 жыл бұрын
Could we add a drawer to go on top of all the fragments and take the user to account settings or another activity all together?
@hafizwaqas2985
@hafizwaqas2985 2 жыл бұрын
Auto selected is shown and reselected toast also working but when clicking on another menu icon then app crash immediately any solution
@makilejohn9724
@makilejohn9724 3 жыл бұрын
When in use this implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' than install project this error show ( Manifest merger failed with multiple errors, see logs ) please help me
@padalapallavi2011
@padalapallavi2011 3 жыл бұрын
Will Android studio version 4.0 support this?
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Yes
@darksunTechnologies
@darksunTechnologies 2 жыл бұрын
I wrote the dependancy in build .gradle still i am not getting bottom navigation in xml file what should i fo?
@FreddaN241
@FreddaN241 2 жыл бұрын
same here...
@kusumawardhana5799
@kusumawardhana5799 2 жыл бұрын
u r not alone
@pltsm3970
@pltsm3970 3 жыл бұрын
@AndroidCoding
@AndroidCoding 3 жыл бұрын
I think library not synchronised properly. So close the project and open again.
@mahmudulhassan123
@mahmudulhassan123 3 жыл бұрын
Getting nullpoint exception on arctic fox version, can you help please?
@Sumit-lr1qj
@Sumit-lr1qj 2 жыл бұрын
is this library changed now ?
@ldhpro
@ldhpro 3 жыл бұрын
Hey~ so much thank you,,, plz can i ask you some but,, What emulator are you using?
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Hello Dong, I am using real device via adb wifi plug-in.
@ldhpro
@ldhpro 3 жыл бұрын
@@AndroidCoding thanks
@minhnguyen0612
@minhnguyen0612 3 жыл бұрын
Hi sir! how can i update count number on notification icon when i am interacting with other fragment (like Home fragment)?
@danishriaz5304
@danishriaz5304 3 жыл бұрын
Hi i want to go Activity instead of fragment...what should i do?
@hagebyemen1857
@hagebyemen1857 3 жыл бұрын
I ask you, brother, to explain how to add elements within the project Like navigation elements within a project Like / videoView / webview
@prajil_
@prajil_ 3 жыл бұрын
Can I change the Notification^10 simple from the icon?
@asifiqbal1261
@asifiqbal1261 3 жыл бұрын
Does it support Navigation component?
@0T3X
@0T3X 3 жыл бұрын
How can I put ImageButton in fragments that will lead to another activity when I click the ImageButton?
@chozinul_fahmi
@chozinul_fahmi 3 жыл бұрын
The icon on the device can't show. Do U have a solution?
@movieresponse123
@movieresponse123 3 жыл бұрын
Same problem create
@jejieun9246
@jejieun9246 3 жыл бұрын
Do you solve that?
@dombikpanda
@dombikpanda 3 жыл бұрын
How can we add their names as text under the items?.
@eduardoreyes5203
@eduardoreyes5203 3 жыл бұрын
Magnificent! Thank you so much!
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome. Keep sharing.
@arsharifuddinjumman8590
@arsharifuddinjumman8590 2 жыл бұрын
very very thanks bro, keep up .
@AndroidCoding
@AndroidCoding 2 жыл бұрын
You're welcome. Keep supporting. Keep learning.
@arsharifuddinjumman8590
@arsharifuddinjumman8590 2 жыл бұрын
@@AndroidCoding I want to do it without fragment . Can you helpe?
@AndroidCoding
@AndroidCoding 2 жыл бұрын
Redirect to activity using intent.
@maryamsb7554
@maryamsb7554 3 жыл бұрын
This is great! Worked for me. But I’m getting a gap between the mbn and fragment and there’s no margin or padding, what do I do?
@abdelrahmankhaled7575
@abdelrahmankhaled7575 3 жыл бұрын
I love ur tutorials
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Thanks for love and support.
@harshjain8345
@harshjain8345 3 жыл бұрын
Great video... Could you mention your pc specifications plzz!..i would be glad
@scarletjoy5463
@scarletjoy5463 3 жыл бұрын
Thanks for ideas!! Auto-subscribe ^^
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome
@mohammedtalbi2904
@mohammedtalbi2904 3 жыл бұрын
like for this perefect tuto thank sir
@aviroxi
@aviroxi 3 жыл бұрын
it works perfect thank you so much :)
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome
@dilanchathuranga5413
@dilanchathuranga5413 3 жыл бұрын
great video, but I have a little issue, after successfully adding the navigation, I cant use device keyboard , its only hoping can you give me a any clue to solve it thanks ...
@riyadofficiall
@riyadofficiall 2 жыл бұрын
amazing
@AndroidCoding
@AndroidCoding 2 жыл бұрын
Thanks
@APOORVSAHU-ro6vc
@APOORVSAHU-ro6vc 2 жыл бұрын
❤️❤️❤️❤️
@AndroidCoding
@AndroidCoding 2 жыл бұрын
👍🙏
@mimicom1223
@mimicom1223 2 жыл бұрын
error MeowBottomNavigation.ClickListener(){ how can i solve it
@mariam-9957
@mariam-9957 3 жыл бұрын
Can i use it with activity?
@mariam-9957
@mariam-9957 3 жыл бұрын
@@ricooloco yes & it work
@amirulaime9758
@amirulaime9758 3 жыл бұрын
Copy: implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' Syn now
@zakirmagide8889
@zakirmagide8889 3 жыл бұрын
beautiful man
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Thanks
@ruchajoshi5671
@ruchajoshi5671 3 жыл бұрын
I guess lib is deprecated now! if you are using kotlin use: implementation 'com.etebarian:meow-bottom-navigation:1.3.1'
@pltsm3970
@pltsm3970 3 жыл бұрын
Hello sir you're doing Great job thank you for helping us. I need some help with chart analysis, do me a favor plz. I have a chart picture, i need to analyze it and get a value as result. Is it possible to use the picture if not how can i do this?? Or make a video on it. Thanks in advance
@dabyain
@dabyain 3 жыл бұрын
link of the project ?
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@mdzashimuddin7824
@mdzashimuddin7824 3 жыл бұрын
tnx..
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome
@TCC-THECREATIVECHANNEL
@TCC-THECREATIVECHANNEL 3 жыл бұрын
Great
@siddheshundre6808
@siddheshundre6808 3 жыл бұрын
i wanna the code can u share me ..
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@dilshodiskandarov7144
@dilshodiskandarov7144 3 жыл бұрын
Rahmat katta
@minma5804
@minma5804 2 жыл бұрын
Link its not downloading 😕
@vickydhinesh6350
@vickydhinesh6350 3 жыл бұрын
Not working in recyclerview...i have tried many times.explain deeply
@shivamverma1117
@shivamverma1117 3 жыл бұрын
Actually this library also made by using recycler view, when we use this some other activities running in back screen. May be they solve this problem soon.
@chelseaehimare597
@chelseaehimare597 3 жыл бұрын
THANK YOU SENPAI!
@pakistanidramatrends7167
@pakistanidramatrends7167 3 жыл бұрын
Sir make videos with your voice
@usmanbabar8943
@usmanbabar8943 3 жыл бұрын
not running with maven
@learningsolutions6656
@learningsolutions6656 3 жыл бұрын
icon show ni hurahy sir g
@erronano6470
@erronano6470 3 жыл бұрын
👍
@AndroidCoding
@AndroidCoding 3 жыл бұрын
🙏
@OnRage91
@OnRage91 3 жыл бұрын
APK file but no sources wtf? why?
@ThanhNguyen-jk5wc
@ThanhNguyen-jk5wc 3 жыл бұрын
thanks bro
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome
@abcdefj7144
@abcdefj7144 3 жыл бұрын
thank you
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome
@VishalKumar-sm8bo
@VishalKumar-sm8bo 3 жыл бұрын
edit text is not working
@erronano6470
@erronano6470 3 жыл бұрын
i wanna the code
@AndroidCoding
@AndroidCoding 3 жыл бұрын
Thanks for joining my channel membership. Give me your mail id.
3 жыл бұрын
So, i mean, i love your job bro, thanks
@AndroidCoding
@AndroidCoding 3 жыл бұрын
You're welcome. Thanks for love and support.
@spk4426
@spk4426 3 жыл бұрын
Getting manifest error
@Anishmitkari
@Anishmitkari 3 жыл бұрын
next time bring some logical functional example
@bulentoral1177
@bulentoral1177 2 жыл бұрын
Dude year is 2022 , Where is source code, come on
@minma5804
@minma5804 2 жыл бұрын
Give source bro
@AndroidCoding
@AndroidCoding 2 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@minma5804
@minma5804 2 жыл бұрын
@@AndroidCoding ok i want change sourc to aide can i ?
@Allah1withoutevidence
@Allah1withoutevidence 3 жыл бұрын
download file
@ougmostafa_1
@ougmostafa_1 3 жыл бұрын
the file have virus
@moneymakingonlinebd
@moneymakingonlinebd 2 жыл бұрын
This code is not working now.
@makilejohn9724
@makilejohn9724 3 жыл бұрын
When i use this implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' than install project this error show ( Manifest merger failed with multiple errors, see logs ) please help me
@servermonks5509
@servermonks5509 2 жыл бұрын
same problem with me
@tasawurabbas1425
@tasawurabbas1425 3 жыл бұрын
Sir make videos with your voice
@makilejohn9724
@makilejohn9724 3 жыл бұрын
When i use this implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' than install project this error show ( Manifest merger failed with multiple errors, see logs ) please help me
Bottom Navigation in Android Studio using Kotlin | Android Knowledge
16:25
Full Guide to Jetpack Compose Animations - Android Studio Tutorial
28:23
번쩍번쩍 거리는 입
0:32
승비니 Seungbini
Рет қаралды 182 МЛН
24 Часа в БОУЛИНГЕ !
27:03
A4
Рет қаралды 7 МЛН
How I make bots using python (educational)
17:12
Kian Brose
Рет қаралды 568 М.
Navigation Drawer Menu in Android Studio using Java | 2024
20:46
Android Knowledge
Рет қаралды 95 М.
Maven Tutorial - Crash Course
26:08
Marco Codes
Рет қаралды 189 М.
ViewModels & Configuration Changes - Android Basics 2023
18:46
Philipp Lackner
Рет қаралды 137 М.