Android : When do we use getIntent()?

http://developer.android.com/reference/android/app/Activity.html#getIntent() Return the intent that started this activity. If you start an Activity with some data, for example by doing you can retrieve this data using getIntent in the new activity: So, it’s not for handling returning data from an Activity, like onActivityResult, but it’s for passing data to a new Activity.