通过Facebook分享 - 缺少选择列表 - Android

时间:2012-12-21 15:16:44

标签: android facebook

我在我的应用程序中编写了以下代码,向用户显示“共享”选项。

我可以看到“电子邮件”,“Gmail”和“Youtube”,但我看不到“脸书”:(

try {

                Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); 
                emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,  mEvent.getName());  
                emailIntent.setType("plain/text");  
                emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, txtDesc.getText());
                startActivity(Intent.createChooser(emailIntent, "Send your email in:")); 

            } catch (Exception e) {
                Toast.makeText(getApplicationContext(),
                    "Email faild, please try again later!",
                    Toast.LENGTH_LONG).show();
                e.printStackTrace();
            }

如何添加“facebook”选项?

1 个答案:

答案 0 :(得分:3)

纯文本的正确MIME类型为text/plain,而不是plain/text。试试吧。