We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Hitomis, I want to add onClickListner on the sub-menus. I added the following code but it is not working.
Intent intent1 = new Intent(this,Activity2.class); this.startActivity(intent1); return true;
Please help me to add the onClickListner.
The text was updated successfully, but these errors were encountered:
circleMenu.setOnMenuSelectedListener(new OnMenuSelectedListener() { @Override public void onMenuSelected(int index) { if (index == 0){} if (index == 1){} if (index == 2){} ...... } });
Sorry, something went wrong.
I'm unable to start new activity on clicking the submenus. What to write inside the if() method? Using Intent does not work.
did you figure it out? @RajniLakshmi i am also trying to start new activity after we click any icon in circle menu..
No branches or pull requests
Hi Hitomis, I want to add onClickListner on the sub-menus. I added the following code but it is not working.
Intent intent1 = new Intent(this,Activity2.class); this.startActivity(intent1); return true;
Please help me to add the onClickListner.
The text was updated successfully, but these errors were encountered: