I want to receive a push notification from Parse and open an List activity and use intent.putextra(\"dataFromParse\") before starting the activity. I\'m able to receive the push
As per official Parse documentation on https://www.parse.com/docs/android/guide#push-notifications-customizing-notifications :
If your push has no "uri" parameter, onPushOpen will invoke your application's launcher activity.
So, the current accepted answer only takes into account the case where your push has no "uri" and it opens your MainActivity. If you want to open a concrete Activity, you can define an intent-filter
for that Activity and send that intent-filter uri on your push.