no.
But howover you can do a javacall to change example a variable in a java array trought a java call. one to set that, and another one to get that. here was that im was doing to do, but did not update to the ANDROIDEXTRAS:
In Public static String glb_JAVACALL(String url):
// --== IS MENU SHOWHING? ==--
if (tokens[0].equals("setMenuShow"))
{ doMenuShow=false;
if (tokens[1].equals("1") || tokens[1].equals("true") doMenuShow=true;
}
In the top, just under public class SDLActivity extends Activity or >>>>>>>> START OF ANDROID EXTRAS <<<<<<<< :
private boolean doMenuShow = false;
Then in doKeydown() event, you could do something like this:
if (keyCode == KeyEvent.KEYCODE_BACK)
{ if (event.isAltPressed()) { return false; } // prevent quit if circle is pressed on Xperia Play
if (doMenuShow==false) { return false; } // prevent back button to work
}
This is just giving you ideas.