Intent myIntent = new Intent(A.this, B.class); myIntent.putExtra("intVariableName", intValue); startActivity(myIntent);
Intent mIntent = getIntent(); int intValue = mIntent.getIntExtra("intVariableName", 0);