Thanks for the video. Can you tell me how can I accommodate more numbers of circles. it looks like 8 default size circles are considered when .addSubNMenu() is used. I need around 15 circles. Is it possible by adjusting circle size or any how. Thanks
Very nice creative Menu................now we can have multiple buttons on One Master button...........I guess we can use this kind of menu on floating button too..........:)
+Ajinkya Mandavkar Thanks for watching... Circle menu will not be good option for floating button which is at bottom right position of yhe screen..there are other options available for that, soon we will add video tutorial on it.... Thanks
hi, good tutorial. As in video their is one quick ball at every screen . how to show circular menu in every screen of device outside the app just like quick ball?
Thanks for the permission to use it on my app. I would like to remove the Menu and cancel button and keep the 5 buttons. So the idea is to have a permanent circular menu, but I don't know how to do it, the method SetMainMenu needs 2 ints, but I don't those two buttons and events to close and appear. If you have any idea, let me know. thanks
To increase icon size change App dependencies compile 'com.github.Hitomis:CircleMenu:v1.0.0' to compile 'com.github.Hitomis:CircleMenu:v1.0.2' after changing dependencies of circle menu change height and width property of circle_menu to Match Parent in activity_main.xml refer our porject from Link : goo.gl/hPJAPC
Change your code as below public void onMenuSelected(int index) { switch (index) { case 0: Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show(); Intent i = new Intent(MainActivity.this, YourActivityName.class); startActivity(i); break;
yeah same thing is happening to me, i even updated the circle menu version but no luck, tried changing the height and width of the circle menu but no luck
this video help me to create circle menu but one more thing how can i change the menu button position e.g.: bottom_center on main activity can u reply me plz sir i want to know it .... thank for making good video tutorial .... waiting your reply sir
how about an intent. when i put an intent inside case0 circlemenu is working partially and goes to the intented activity. how to see the full animation and intent to another activity....
Hello Prasanth, To see full animation you need change your code as follows: Step 1 : Declare one variable in class int selectedIndex; Step 2: In MenuSelectedListener save selected index in the variable circleMenu.setOnMenuSelectedListener(new OnMenuSelectedListener() { @Override public void onMenuSelected(int index) { selectedIndex=index; } } ); Step 3 : Handle Menu Close Event circleMenu.setOnMenuStatusChangeListener(new OnMenuStatusChangeListener() { @Override public void onMenuOpened() { } @Override public void onMenuClosed() { if(selectedIndex==3) startActivity(new Intent(MainActivity.this, ThankYouActivity.class)); } } ); Hope this will help you Thanks
yes, its working but i have 5 submenus and all of them intent to ThankYouActivity.class i want each of them intent to different activities and also how to increase icon size inside floating buttons. thanks in advance. you are great
Hello Prasanth, You need use switch case in onMenuClosed() method to handle click of different submenus and to increase icon size, we will check for more options in this library and revert .
Hello Prasanth, To increase Icon size you need to update the reference of the library to 1.0.2 compile 'com.github.Hitomis:CircleMenu:v1.0.2' and change the width property of the circlemenu
+Sami Say To increase icon size change App dependencies compile 'com.github.Hitomis:CircleMenu:v1.0.0' to compile 'com.github.Hitomis:CircleMenu:v1.0.2' after changing dependencies of circle menu change height and width property of circle_menu to Match Parent in activity_main.xml Url Link : goo.gl/hPJAPC
its still not working for me i have : Android Studio 2.2.3 Build #AI-145.3537739, built on December 2, 2016 JRE: 1.8.0_76-release-b03 amd64 JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
To implement this make following changes in your project Step 1. Change Background Colour of SubMenus to #00ffffff e.g. .addSubMenu(Color.parseColor("#00ffffff"), R.mipmap.ic_alarm) Step 2. Create PNG Icons with transparent background
+Amigos Wholeselling Thanks for watching our tutorial video. To increase icon size, you need to update the reference of the library to 1.0.2. compile 'com.github.Hitomis:CircleMenu:v1.0.2' and change the width property of the circle menu.
To achieve this you need to create your own circle menu using Floating Action Button and Animations and implement the required logic. our this video might give some idea about it ruclips.net/video/Cys_i-6Pu-o/видео.html
Change your code as below public void onMenuSelected(int index) { switch (index) { case 0: Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show(); Intent i = new Intent(MainActivity.this, YourActivityName.class); startActivity(i); break;
Sir is there a way I can move to another activity by clicking on the sub menus? I'm working on my project right now and tried everything but won't work. Thank you so much! I really appreciate your quick replies.
Should I put it inside the case sir? Inside comment is how I code it but wont work :( public void onMenuSelected(int index) { switch (index) { case 0: Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show(); /**icon_navi.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent i = new Intent(HomeControl.this, NavigateControl.class); startActivity(i); } });**/ break;
No need to set ClickListner. Change your code as below public void onMenuSelected(int index) { switch (index) { case 0: Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show(); Intent i = new Intent(HomeControl.this, NavigateControl.class); startActivity(i); break;
To increase icon size change App dependencies compile 'com.github.Hitomis:CircleMenu:v1.0.0' to compile 'com.github.Hitomis:CircleMenu:v1.0.2' after changing dependencies of circle menu change height and width property of circle_menu to Match Parent in activity_main.xml refer our porject from Link : goo.gl/hPJAPC
Complete Tutorial on Firebase
Firebase Fundamentals - www.udemy.com/course/firebase-fundamentals-android/?referralCode=C8F4D9A1DB4548A6A037
Firebase Advanced - Chat App -www.udemy.com/course/firebase-advanced-real-time-chat-app-in-android-studio/?referralCode=EC4D9A3A2ADC5C5AE75A
greetings from Malaysia, good effort guys, keep it up!
Thanks +qin feng chia
Hope to see more productive tutorial like this............:)
Thanks for the video. Can you tell me how can I accommodate more numbers of circles. it looks like 8 default size circles are considered when .addSubNMenu() is used. I need around 15 circles. Is it possible by adjusting circle size or any how. Thanks
Very nice creative Menu................now we can have multiple buttons on One Master button...........I guess we can use this kind of menu on floating button too..........:)
+Ajinkya Mandavkar Thanks for watching...
Circle menu will not be good option for floating button which is at bottom right position of yhe screen..there are other options available for that, soon we will add video tutorial on it.... Thanks
Hi friend good job for this!!! I have a question: Can I skip the circular animation after click a menu option? How can I do that?
create? how to generate from an existent library a circular menu..
Do you know how to change the speed at which the wheel rotates when pressing an icon?
I hope and explain myself well
thak u for this,i want to ask ,Can you show me to use it on other screen application as easy touch?
gr8 tutorial..thanks!
can we put text too?
hi, good tutorial. As in video their is one quick ball at every screen . how to show circular menu in every screen of device outside the app just like quick ball?
Thank you .this tutorial is very simple and is good. liiiiiiiiiike
Thanks! Great Tutorial
Thank you, Dear Professor.
Thanks for the permission to use it on my app.
I would like to remove the Menu and cancel button and keep the 5 buttons.
So the idea is to have a permanent circular menu, but I don't know how to do it, the method SetMainMenu needs 2 ints, but I don't those two buttons and events to close and appear.
If you have any idea, let me know.
thanks
Hi,
Thanks for this great video.
Can I use your Circular menu and the library you created on the app I am creating ?
Thanks
Yes you can use..refer our project goo.gl/le8dGZ
Thank you it was very usefull for me
I have an error "Unable to start activity ComponentInfo...attempt to invoke virtual methods on a null object reference" :/
Please help
thanks for this wonderful tutorial! how can i change the size of the circles? i want it more bigger if its applicable
To increase icon size change App dependencies
compile 'com.github.Hitomis:CircleMenu:v1.0.0' to compile 'com.github.Hitomis:CircleMenu:v1.0.2'
after changing dependencies of circle menu change height and width property of circle_menu to Match Parent in activity_main.xml
refer our porject from Link : goo.gl/hPJAPC
thank you very much! I did it! :)
how can i open a new activity when i click the circle?
Change your code as below
public void onMenuSelected(int index) {
switch (index) {
case 0:
Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show();
Intent i = new Intent(MainActivity.this, YourActivityName.class);
startActivity(i);
break;
doesn't work for me. do you have an alternative?
When I add a activity the circle is rotating half only why..? In your video so when u click thank you activity the circle rotate half only
yeah same thing is happening to me, i even updated the circle menu version but no luck, tried changing the height and width of the circle menu but no luck
@@LameBandTV how did you guys added activities? any hint plz?
AMAZING.....................
sir i got null point exception when i added your code in xml and its crashing?what should i do?
this video help me to create circle menu but one more thing how can i change the menu button position e.g.: bottom_center on main activity can u reply me plz sir i want to know it .... thank for making good video tutorial .... waiting your reply sir
Cómo puedo hacer para que el usuario pueda mover el botón a la posición que el quiera?
hello, its gud and working but i fixed splash screen its not working then how i can do.....
Thank you su much, but when i clicked in button menu i want to opened another layout ! Can you help me ?
Thanks Amine...For required feature you can refer our sample project which you can download from goo.gl/le8dGZ
Hello, have you tried opening another activity by clicking on of the submenus?
Thank you
Wow!! thank you
how to change the speed at which the wheel rotates when pressing an icon?
Perfect, thanks
how about an intent.
when i put an intent inside case0
circlemenu is working partially and goes to the intented activity.
how to see the full animation and intent to another activity....
Hello Prasanth,
To see full animation you need change your code as follows:
Step 1 : Declare one variable in class
int selectedIndex;
Step 2: In MenuSelectedListener save selected index in the variable
circleMenu.setOnMenuSelectedListener(new OnMenuSelectedListener() {
@Override
public void onMenuSelected(int index) {
selectedIndex=index; }
}
);
Step 3 : Handle Menu Close Event
circleMenu.setOnMenuStatusChangeListener(new OnMenuStatusChangeListener() {
@Override
public void onMenuOpened() {
}
@Override
public void onMenuClosed() {
if(selectedIndex==3)
startActivity(new Intent(MainActivity.this, ThankYouActivity.class));
}
}
);
Hope this will help you
Thanks
yes, its working but i have 5 submenus and all of them intent to ThankYouActivity.class
i want each of them intent to different activities and also how to increase icon size inside floating buttons.
thanks in advance. you are great
Hello Prasanth,
You need use switch case in onMenuClosed() method to handle click of different submenus and to increase icon size, we will check for more options in this library and revert .
any hope..
Hello Prasanth,
To increase Icon size you need to update the reference of the library to 1.0.2
compile 'com.github.Hitomis:CircleMenu:v1.0.2'
and change the width property of the circlemenu
Please help me how to use circle menu on touch screen event in background service
plz make video about fragmentation...
Thx, it's really a great and Simple tutorial. but what to write to encrease witdh in 1.0.2 plz?
+Sami Say You need to change the Width property of CircleMenu tag...You can refer our project goo.gl/le8dGZ
line of code to change please? i downlaoded the projet but i didn't get it, sorry! :/
+Sami Say To increase icon size change App dependencies
compile 'com.github.Hitomis:CircleMenu:v1.0.0' to compile 'com.github.Hitomis:CircleMenu:v1.0.2'
after changing dependencies of circle menu change height and width property of circle_menu to Match Parent in activity_main.xml
Url Link : goo.gl/hPJAPC
thank u so much
i want to add listeners to each menu.i.e. each menu should do a task asssigned.How can i do that??
hello, it is already explained in the video. you need to specify the task for each menu in switch case in listener. Refer project goo.gl/le8dGZ
Appeteria Technologies hello help me out to resolve com.github.Hitomis:CirleMenu:v1.0.0... which i added in app gradle
how to change the size of the buttons?
and also how to change the shape of the buttons
this dependencies library is not working
please can i put a string in addSubMenu?
Why i can't import compile 'com.github.Hitomis:CircleMenu:v1.0.0' in my app ?
is it available in Android Studio 2.0 ?
Thank you !
+Adib Makhoul Kindly use v1.0.2..Thanks
Appeteria Technologies Thanks , but is there a way to solve this problem in v 2.0 ?
Thank you very much !
its still not working for me i have :
Android Studio 2.2.3
Build #AI-145.3537739, built on December 2, 2016
JRE: 1.8.0_76-release-b03 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
+Vikum Charuka Egodapitiya Try Clean Project
thank u
hi, How to use it in Fragment
how can i open a new activity when i click the circle button
CircleMenuExamples has stopped...please help :(
The best
thanks a lot ,how can i use my own icons(without adding a color)
To implement this make following changes in your project
Step 1. Change Background Colour of SubMenus to #00ffffff
e.g. .addSubMenu(Color.parseColor("#00ffffff"), R.mipmap.ic_alarm)
Step 2. Create PNG Icons with transparent background
thanks a lot i will try it
i will try this thank you
Thanks Great Tutorial but How to Change the icon size plzz say bro
+Amigos Wholeselling Thanks for watching our tutorial video. To increase icon size, you need to update the reference of the library to 1.0.2.
compile 'com.github.Hitomis:CircleMenu:v1.0.2' and change the width property of the circle menu.
hi bro..I can't gradle app ... it shows some error that it can't resolve com.githum.Hitomis:CircleMenu:v1.0.0... help me bro... urgent
Try Clean Project (Menu : Build -> Clean Project)
I'm getting the same error in the gradle bro, did the clean project work?
How can I start the buttons one after another when middle button is pressed?
To achieve this you need to create your own circle menu using Floating Action Button and Animations and implement the required logic. our this video might give some idea about it ruclips.net/video/Cys_i-6Pu-o/видео.html
Thanks a lot for your quick feedback and that video was helpful!
how can I open up a new screen after clicking on one of the options on this menu?
+Angelica Ramirez You can refer our project goo.gl/le8dGZ
Hello, have you tried opening another activity by clicking on of the submenus?
Refer goo.gl/le8dGZ
+KYLE TRUSSO Use intent instead of Toast message. Refer our project goo.gl/le8dGZ
And if I want to move to a new activity as would be?
Change your code as below
public void onMenuSelected(int index) {
switch (index) {
case 0:
Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show();
Intent i = new Intent(MainActivity.this, YourActivityName.class);
startActivity(i);
break;
Trank you, I do it differently
Hello. I used this code to move to a new activity but it moves too fast to the new activity so the circle effect does not show anymore
error saying app cannot be opened plz help
hi sir! can you teach me how to scroll that menu? thnx ^^
sir please make tutorial on circle menu showing that
how to go on another activity from that menu
did you figure it out? I am stuck in same problem for a couple of days..tip plzz?
I've had execution failed for task sir. 'app:mergeDebugResources'
>Error:java.lang.RuntimeException: Some file crunching failed. Help pls thanks huhu
Try Clean Project (Menu Build-> Clean Project)
Refer : stackoverflow.com/a/36276670
Sir is there a way I can move to another activity by clicking on the sub menus? I'm working on my project right now and tried everything but won't work. Thank you so much! I really appreciate your quick replies.
Instead of Toast message use Explicit Intent to open activity. Refer project from goo.gl/le8dGZ
Should I put it inside the case sir?
Inside comment is how I code it but wont work :(
public void onMenuSelected(int index) {
switch (index) {
case 0:
Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show();
/**icon_navi.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(HomeControl.this, NavigateControl.class);
startActivity(i);
}
});**/
break;
No need to set ClickListner. Change your code as below
public void onMenuSelected(int index) {
switch (index) {
case 0:
Toast.makeText(HomeControl.this, "Navigation Clicked", Toast.LENGTH_SHORT).show();
Intent i = new Intent(HomeControl.this, NavigateControl.class);
startActivity(i);
break;
please how to make intent in this menu
+OUSSAMA KHALLADI Use Explicit Intent instead of Toast mes. Refer project goo.gl/le8dGZ
please i want to change only the size of icon open
hey m getting an error Error:Illegal character in authority at index 8: jitpack.io
+Namra Rais check if you are having space character near jitpack.io at line 8 in gradle file
thankyou :) can we increase the size of middle button ?
To increase icon size change App dependencies
compile 'com.github.Hitomis:CircleMenu:v1.0.0' to compile 'com.github.Hitomis:CircleMenu:v1.0.2'
after changing dependencies of circle menu change height and width property of circle_menu to Match Parent in activity_main.xml
refer our porject from Link : goo.gl/hPJAPC
Can I get your email address to ask further more queries about animation?
+Namra Rais you can send your queries at training@appeteria.com