Android disable cliking sound menu
1 answer
I am using this:
final Toolbar toolbar = (Toolbar) this.findViewById(R.id.toolbar);
final View child = toolbar.getChildAt(2);
if (child instanceof ActionMenuView)
{
final ActionMenuView actionMenuView = ((ActionMenuView) child);
actionMenuView.getChildAt(actionMenuView.getChildCount() - 1).setSoundEffectsEnabled(false);
}
If the navigation drawer uses toolbar.getChildAt (2); if you don't use toolbar.getChildAt (1);
0
source to share