hi, it seems that this library is not available anymore for java.
@sentilayshorts2 жыл бұрын
Class referenced in the layout file, com.etebarian.meowbottomnavigation.MeowBottomNavigation, was not found in the project or the libraries
@Prince-nv8ef2 жыл бұрын
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"
@kusumawardhana57992 жыл бұрын
can u solve it?
@BurakTugaySur3 жыл бұрын
It was the design I've been looking for for a long time. You're amazing. Really thank you.
@manuelgmra3 жыл бұрын
It was very simple to build a bottom navigation You explained very nice and simple. No errors following your directions
@oguzhanturkmen8352 жыл бұрын
i cant find etebarian in xml. it doesnt exist. why?
@AndroidCoding2 жыл бұрын
Close your project. Reopen the project and check.
@oguzhanturkmen8352 жыл бұрын
@@AndroidCoding i did it. but can't solve it. interesting
@AndroidCoding2 жыл бұрын
Build.Gradle : implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' Kindly check this library added or not.
@oguzhanturkmen8352 жыл бұрын
I added already.
@mantalite462 жыл бұрын
@@oguzhanturkmen835 SORUNU ÇÖZEBİLDİN Mİ
@cyberzypher37452 жыл бұрын
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
@sreenaths4972 жыл бұрын
Fragment is the way to do it. Not activity
@etherealttv3 жыл бұрын
This is amazing!! Im making a journal app for my uni end of project and these tutorials are so useful thank you so much!!
@AndroidCoding3 жыл бұрын
You're welcome. Thanks for giving your valuable feedback.
@rash53653 жыл бұрын
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
@AndroidCoding3 жыл бұрын
Delete only the toast message code, not the whole method.
@jRQLME3 жыл бұрын
is it possible to use activities instead of fragments? same layout but with activities..
@shelly68983 жыл бұрын
yes there are tutorials on yt for that
@jRQLME3 жыл бұрын
@@shelly6898 found it thanks
@shelly68983 жыл бұрын
@@jRQLME nice good for you!
@danishriaz53043 жыл бұрын
@@jRQLME link plz
@kaziatiw6672 жыл бұрын
@Shelly could you please give that activities link
@sumanbachar24173 жыл бұрын
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
@sumanbachar24173 жыл бұрын
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(); }
@sumanbachar24173 жыл бұрын
@@VishalKumar-sm8bo what is the problem ?
@VishalKumar-sm8bo3 жыл бұрын
@@sumanbachar2417 still refreshing
@VishalKumar-sm8bo3 жыл бұрын
@@sumanbachar2417 still refreshing while using edit text
@sumanbachar24173 жыл бұрын
@@VishalKumar-sm8bo Give me your email id
@_ChetanaNagare3 жыл бұрын
Amazing tutorial 💯
@AndroidCoding3 жыл бұрын
Thanks a lot
@peezynathaniel19773 жыл бұрын
Magnificent design. . .
@vineetsinghrana3 жыл бұрын
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.
@awanderoosolutions90863 жыл бұрын
Did u get the solution to your Query ? i was also in need of the same
@sh1ttersgf4002 жыл бұрын
then dont init a new fragment but rather open a link
@willsimz1443 жыл бұрын
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?
@hafizwaqas29852 жыл бұрын
Auto selected is shown and reselected toast also working but when clicking on another menu icon then app crash immediately any solution
@makilejohn97243 жыл бұрын
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
@padalapallavi20113 жыл бұрын
Will Android studio version 4.0 support this?
@AndroidCoding3 жыл бұрын
Yes
@darksunTechnologies2 жыл бұрын
I wrote the dependancy in build .gradle still i am not getting bottom navigation in xml file what should i fo?
@FreddaN2412 жыл бұрын
same here...
@kusumawardhana57992 жыл бұрын
u r not alone
@pltsm39703 жыл бұрын
@AndroidCoding3 жыл бұрын
I think library not synchronised properly. So close the project and open again.
@mahmudulhassan1233 жыл бұрын
Getting nullpoint exception on arctic fox version, can you help please?
@Sumit-lr1qj2 жыл бұрын
is this library changed now ?
@ldhpro3 жыл бұрын
Hey~ so much thank you,,, plz can i ask you some but,, What emulator are you using?
@AndroidCoding3 жыл бұрын
Hello Dong, I am using real device via adb wifi plug-in.
@ldhpro3 жыл бұрын
@@AndroidCoding thanks
@minhnguyen06123 жыл бұрын
Hi sir! how can i update count number on notification icon when i am interacting with other fragment (like Home fragment)?
@danishriaz53043 жыл бұрын
Hi i want to go Activity instead of fragment...what should i do?
@hagebyemen18573 жыл бұрын
I ask you, brother, to explain how to add elements within the project Like navigation elements within a project Like / videoView / webview
@prajil_3 жыл бұрын
Can I change the Notification^10 simple from the icon?
@asifiqbal12613 жыл бұрын
Does it support Navigation component?
@0T3X3 жыл бұрын
How can I put ImageButton in fragments that will lead to another activity when I click the ImageButton?
@chozinul_fahmi3 жыл бұрын
The icon on the device can't show. Do U have a solution?
@movieresponse1233 жыл бұрын
Same problem create
@jejieun92463 жыл бұрын
Do you solve that?
@dombikpanda3 жыл бұрын
How can we add their names as text under the items?.
@eduardoreyes52033 жыл бұрын
Magnificent! Thank you so much!
@AndroidCoding3 жыл бұрын
You're welcome. Keep sharing.
@arsharifuddinjumman85902 жыл бұрын
very very thanks bro, keep up .
@AndroidCoding2 жыл бұрын
You're welcome. Keep supporting. Keep learning.
@arsharifuddinjumman85902 жыл бұрын
@@AndroidCoding I want to do it without fragment . Can you helpe?
@AndroidCoding2 жыл бұрын
Redirect to activity using intent.
@maryamsb75543 жыл бұрын
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?
@abdelrahmankhaled75753 жыл бұрын
I love ur tutorials
@AndroidCoding3 жыл бұрын
Thanks for love and support.
@harshjain83453 жыл бұрын
Great video... Could you mention your pc specifications plzz!..i would be glad
@scarletjoy54633 жыл бұрын
Thanks for ideas!! Auto-subscribe ^^
@AndroidCoding3 жыл бұрын
You're welcome
@mohammedtalbi29043 жыл бұрын
like for this perefect tuto thank sir
@aviroxi3 жыл бұрын
it works perfect thank you so much :)
@AndroidCoding3 жыл бұрын
You're welcome
@dilanchathuranga54133 жыл бұрын
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 ...
@riyadofficiall2 жыл бұрын
amazing
@AndroidCoding2 жыл бұрын
Thanks
@APOORVSAHU-ro6vc2 жыл бұрын
❤️❤️❤️❤️
@AndroidCoding2 жыл бұрын
👍🙏
@mimicom12232 жыл бұрын
error MeowBottomNavigation.ClickListener(){ how can i solve it
@mariam-99573 жыл бұрын
Can i use it with activity?
@mariam-99573 жыл бұрын
@@ricooloco yes & it work
@amirulaime97583 жыл бұрын
Copy: implementation 'com.etebarian:meow-bottom-navigation-java:1.2.0' Syn now
@zakirmagide88893 жыл бұрын
beautiful man
@AndroidCoding3 жыл бұрын
Thanks
@ruchajoshi56713 жыл бұрын
I guess lib is deprecated now! if you are using kotlin use: implementation 'com.etebarian:meow-bottom-navigation:1.3.1'
@pltsm39703 жыл бұрын
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
@dabyain3 жыл бұрын
link of the project ?
@AndroidCoding3 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@mdzashimuddin78243 жыл бұрын
tnx..
@AndroidCoding3 жыл бұрын
You're welcome
@TCC-THECREATIVECHANNEL3 жыл бұрын
Great
@siddheshundre68083 жыл бұрын
i wanna the code can u share me ..
@AndroidCoding3 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@dilshodiskandarov71443 жыл бұрын
Rahmat katta
@minma58042 жыл бұрын
Link its not downloading 😕
@vickydhinesh63503 жыл бұрын
Not working in recyclerview...i have tried many times.explain deeply
@shivamverma11173 жыл бұрын
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.
@chelseaehimare5973 жыл бұрын
THANK YOU SENPAI!
@pakistanidramatrends71673 жыл бұрын
Sir make videos with your voice
@usmanbabar89433 жыл бұрын
not running with maven
@learningsolutions66563 жыл бұрын
icon show ni hurahy sir g
@erronano64703 жыл бұрын
👍
@AndroidCoding3 жыл бұрын
🙏
@OnRage913 жыл бұрын
APK file but no sources wtf? why?
@ThanhNguyen-jk5wc3 жыл бұрын
thanks bro
@AndroidCoding3 жыл бұрын
You're welcome
@abcdefj71443 жыл бұрын
thank you
@AndroidCoding3 жыл бұрын
You're welcome
@VishalKumar-sm8bo3 жыл бұрын
edit text is not working
@erronano64703 жыл бұрын
i wanna the code
@AndroidCoding3 жыл бұрын
Thanks for joining my channel membership. Give me your mail id.
3 жыл бұрын
So, i mean, i love your job bro, thanks
@AndroidCoding3 жыл бұрын
You're welcome. Thanks for love and support.
@spk44263 жыл бұрын
Getting manifest error
@Anishmitkari3 жыл бұрын
next time bring some logical functional example
@bulentoral11772 жыл бұрын
Dude year is 2022 , Where is source code, come on
@minma58042 жыл бұрын
Give source bro
@AndroidCoding2 жыл бұрын
Join this channel membership to get access to source code perks: kzbin.info/door/UIF5MImktJLDWDKe5oTdJQjoin
@minma58042 жыл бұрын
@@AndroidCoding ok i want change sourc to aide can i ?
@Allah1withoutevidence3 жыл бұрын
download file
@ougmostafa_13 жыл бұрын
the file have virus
@moneymakingonlinebd2 жыл бұрын
This code is not working now.
@makilejohn97243 жыл бұрын
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
@servermonks55092 жыл бұрын
same problem with me
@tasawurabbas14253 жыл бұрын
Sir make videos with your voice
@makilejohn97243 жыл бұрын
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