I have this code:
Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); startActivity(intent);
Which will successfully
String cc=trlink.toString(); Intent share = new Intent(Intent.ACTION_SEND); share.setType("text/plain"); share.putExtra(Intent.EXTRA_TEXT,cc); startActivity(Intent.createChooser(share,"Share Text"));