我想在 facebook 墙贴上发布一条消息。我正在使用此代码。如果我使用
.setType(image/jpeg)
它附加了图像并且工作正常。但是我无法让它与消息一起使用。请告诉我如何解决这个问题
String msg = "My Message" ;
Intent shareIntent = ShareCompat.IntentBuilder.from(MainMenu.this)
.setType("text/plain")
.setText(msg)
.getIntent()
.setPackage("com.facebook.katana");
try{
startActivity(shareIntent);
}catch (ActivityNotFoundException e) {
Toast.makeText(MainMenu.this, "Sorry, but it seems that application is not installed", Toast.LENGTH_LONG).show();
}