I am new to this android.In my application when user clicks Menu button ,i want to show 1 option at the bottom of the screen(background should remain as the current screen).Simply i have to say means if user clicks menu button as like pop up window 1 option should come at the
bottom of the screen.And user clicks on that some action should happen..I can t able put some screenshots for this.
----------------------
------------>Consider this is screen
---------------------
------------>here the option should come.
----------------------
Please help me.Thanks in advance.
That can be done, but the solution is too long for me to post here, so instead follow the link to a tutorial for creating a menu
Just as a brief overview of the tutorial – You start by overriding the
onCreateOptionsMenumethod. In this you inflate your menu. Then you override theonItemSelectedmethod, in which you pu a switch to determine which option phase been selected, though in your case it will only be one item. Finally you have to create an XML file which contains all the options for your menu.