I have created an Option menu and footer with 4 icons on it. I would like the overflow menu icon (Three dots icon) to be shown on the footer instead of top right? Is this possible?
If I put a over flow icon is it possible to access the menu.xml file onClick? if so how do I go about doing this?
Thanks!
First of all set activty theme to
NoActionBar
.Then create a
Toolbar
in XML and setlayout_alignParentBottom
true.Then in
onCreate
catch the Toolbar and set asActionBar
Create a menu file in
res/menu
folderThen inflate that menu in
onCreateOptionsMenu
.Then override
onOptionsItemSelected
and do what you want with the items.