How to send an invitation to facebook friends through my App on Android..
Here is how you can do it:
public void inviteFriends(Activity activity, ArrayList friendsIds){
// Safe programming
if(friendsIds == null || friendsIds.size() == 0)
return;
Bundle parameters = new Bundle();
// Get the friend ids
String friendsIdsInFormat = "";
for(int i=0; i
Facebook dialog reference