I want to sent intent from one first activity to another.
The first activity sends an intent to the second activity in order to create a new AlertDialog, receive a n
try this way
int data1,data2; Bundle extra=getIntent().getExtras(); if(extra!=null){ data1=extra.getInt("data1"); data2=extra.getInt("data2"); }