文字列message = "共有したいテキスト";アンドロイドでfacebook SDKを使わずにFacebookのテキストをインテントで共有できますか?
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(share, "Title of the dialog the system will open"));
[AndroidとFacebookの共有の意図](http://stackoverflow.com/questions/7545254/android-and-facebook-share-intent)の可能な複製 –