I have used share inbuilt dialog of android. Which fetch all application which is getting ACTION_SEND intent. My code is
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT,
sharetext);
startActivity(Intent.createChooser(sharingIntent, "Share"));
I am getting all apps like bluetooth, gmail, facebook, messaging, twitter, whatsapp in the list
All apps getting my message but not facebook. What should i do to send message in facebook app. How it will detect my message. Any help will be appreciated. Thanks.