How to share text into facebook using default android sharing(intent ...

Try this... Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent. setType("text/plain"); shareIntent.putExtra(Intent.EXTRA_SUBJECT ...

Lee mas