public void shareMessage(){    
    final Intent intent = new Intent(Intent.ACTION_SEND);     
    intent.setType("text/plain");   
    intent.putExtra(Intent.EXTRA_TEXT, text);    
    getContext().startActivity(Intent.createChooser(intent, "Share"));    
}
When I use "text/plain", Facebook comes up as an option but the text does not load up when selecting it. But the text does load for Twitter,email, SMS.
Has anyone else encountered this problem?