Remove Floating Menu Button From Htc One
I have an app that's been running for years, and constantly get's updated. Originally it had a menu with some shortcuts, but it's not necessary to operate the app, so no big deal a
Solution 1:
In your onCreateOptionsMenu() do this
MenuItemsettingsItem= menu.findItem(R.id.action_settings);
settingsItem.setVisible(false);
Solution 2:
You have to set your targetSdk higher then 13 in your gradle build files.
Thanks to the answer of Ankush Sharma https://stackoverflow.com/a/33086729/2607567.
Post a Comment for "Remove Floating Menu Button From Htc One"