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
Not able to perform onMenuSelectedListener on Sub Menu in Android Kotlin...
The text was updated successfully, but these errors were encountered:
@AKTDev Try this :
`circleMenu.setMainMenu(Color.parseColor("#CDCDCD"), R.drawable.icon_menu, R.drawable.icon_cancel) .addSubMenu(Color.parseColor("#258CFF"), R.drawable.single_dice) .addSubMenu(Color.parseColor("#30A400"), R.drawable.double_dice) .addSubMenu(Color.parseColor("#FF4B32"), R.drawable.triple_dice) .setOnMenuSelectedListener (object : OnMenuSelectedListener{ override fun onMenuSelected(index: Int) { fragmentManager?.beginTransaction()?.add(R.id.parentLayout, OneRollerFragemnt())?.commit() } } ) .setOnMenuStatusChangeListener(object : OnMenuStatusChangeListener { override fun onMenuOpened() { } override fun onMenuClosed() { circleMenu.visibility = View.GONE }
})`
Hope it will help you @AKTDev
Sorry, something went wrong.
No branches or pull requests
Not able to perform onMenuSelectedListener on Sub Menu in Android Kotlin...
The text was updated successfully, but these errors were encountered: