Starting External FaceBook activity to share data causes a warning
WARN/InputManagerService(52): Window already focused, ignoring focus gain of: com.android.
I resolved my problem by using this piece of code.
Intent sendShareIntent = new Intent(Intent.ACTION_SEND);
sendShareIntent.setClassName("com.facebook.katana", "com.facebook.katana.ShareLinkActivity");
sendShareIntent.setType("text/*");
sendShareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "http://www.google.com/");
startActivity(sendShareIntent);
This started my Share facebook activity.
For twitter the package is "com.twitter.android" and class is "com.twitter.android.PostActivity"