What is Intent in Android?
2386
11-Oct-2014
what is intent in android
Updated on 11-Oct-2014
Anonymous User
11-Oct-2014Intent is basically a message that is passed between components (such as Activities, Services, Broadcast Receivers, and Content Providers).
It’s also use for create target of another Activity. In Intent we can send data via bundle.
Example =>
btnSubmit.setOnClickListener(new View.OnClickListener() {
@Override
// TODO Auto-generated method stub
}public void onClick(View v) {
// TODO Auto-generated method stub
// Intent objIntent=new Intent(CurrentClass.this,
// TargretClass.class)
// startActivity(intent);
Intent intent = new Intent(MainActivity.this, Second.class);
startActivity(intent);
});
// It will open Second Activity.