How Intent Work

Intent is used for communicating among different Activity of Application.
1: send data from one Activity to another.
2: Broadcast Intent etc.

Intent i=new Intent(this, Activity2.class);
i.startActivity(i);

Post a Comment

0 Comments