There are millions of posts about how to share a score to another application. I have yet to find one that answers my question.
I have the following code (which can be found everywhere on stackoverflow:)
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,"I just scored " + score);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "App score!");
startActivity(Intent.createChooser(shareIntent, "Share..."));
The question now is:
If for example I share the message to Facebook, I can edit the text before posting. This will allow the user to fill in a score higher than he or she actually reached. Is it possible to make the shared message uneditable?
Kind regards, Jos.
(P.S. bonus question: how to share only with facebook/twitter? I did find it somewhere on stackoverflow but I lost it)
