Dennis Klipp

Results 1 comments of Dennis Klipp

Heres an example: Intent sharingIntent = new Intent(Intent.ACTION_SEND); sharingIntent.setType("text/plain"); sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, getResources().getString("STRING to submit")); startActivityForResult(Intent.createChooser(sharingIntent, "Some title..."), REQUEST_CODE); Documentation: http://developer.android.com/training/sharing/send.html Regards Dennis