working with android intents how to pass arguments between father and the intent h in
- by yoavstr
assuming i want to open another activity from my current activty and i want to pass her arguments such as in my case diffculty level how i do it?...
newGameButton.setOnClickListener(new OnClickListener() {
public void onClick(View view) {
Intent i = new Intent(countryCityGameMenu.this,GameScreen.class);
startActivityForResult(i, GlobalDataStore.STATIC_INTEGER_VALUE);
}
});
is there a way to pass those arguments in the calling ?...
thankx