当通过意图文本分享未在Facebook中显示时
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(android.content.Intent.EXTRA_TEXT, "HELOO WORLD");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "Share with"));;
Run Code Online (Sandbox Code Playgroud)