2012-12-21 18 views
1

我已經在我的應用程序中編寫了以下代碼以向用戶顯示「共享」選項。通過Facebook分享 - 在選擇列表中丟失 - Android

我可以看到 「電子郵件」, 「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(); 
      } 

如何添加 「臉譜」 選項?

回答

3

正確的MIME鍵入純文本是text/plain,而不是plain/text。試試。

相關問題