I invoke activity through:
Intent i = new Intent(MainActivity.this, InputData_DialogActivity.class); i.putExtra("currently page", currentlyPage); startActivity(i); And then, in the second activity I get Extra through:
int currentlyPage = this.getIntent().getIntExtra("currently page", 0); And as a result I get the value 0 (although I give 3, I checked)!
What am I doing wrong?