我想在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();
}
答案 0 :(得分:1)