I'm using the code below to share text with facebook. The problem is that other networks work, but facebook goes blank. Has anyone gone through this?
Intent compartilha = new Intent(Intent.ACTION_SEND);
compartilha.setType("text/plain");
compartilha.putExtra(Intent.EXTRA_SUBJECT, "Compartilhando frase");
compartilha.putExtra(Intent.EXTRA_TEXT, "Texto exemplo!");
startActivity(Intent.createChooser(compartilha, "Compartilhando"));