I have included 'share via myApp' option. I inserted following code in the receiving activity class.
    // Get the intent that started this activity
    Intent intent = getIntent();
    Uri data = intent.getData();
    // Figure out what to do based on the intent type
    if (intent.getType().indexOf("image/") != -1) {
        // Handle intents with image data ...
}
What is the next step to retrieve bitmap image.
 
     
     
     
     
     
     
     
     
    