Related questions
Call method when home button pressed
I have this method in one of my Android Activities:
@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
if(keyCode == KeyEvent.KEYCODE_BACK)
{
Log.d("Test", "Back button pressed!");
}
else if(keyCode == KeyEvent.KEYCODE_HOME)
{
Log.d("Test", "Home button …
Android Open Menu from a button
Is there a way for a button to call a submenu?
I currently have a menu where if they select one of the options it opens a submenu, however I want to be able to start the submenu from the …