nilsm / typeandspeak

Automatically exported from code.google.com/p/typeandspeak
0 stars 0 forks source link

Accept text sharing from other applications #2

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It would be nice to have TypeAndSpeak in the list of sharing targets.

Easily done by BroadcastReceiver + manifest.xml

Original issue reported on code.google.com by a.kosenkov on 4 Apr 2011 at 5:35

GoogleCodeExporter commented 8 years ago
Yes, please add this feature. Then it would be the preffered method for reading 
out loud.

Original comment by hein0...@gmail.com on 13 May 2011 at 11:14

GoogleCodeExporter commented 8 years ago

Original comment by web...@gmail.com on 17 Aug 2011 at 8:41

GoogleCodeExporter commented 8 years ago
Issue 3 has been merged into this issue.

Original comment by web...@gmail.com on 17 Aug 2011 at 8:41

GoogleCodeExporter commented 8 years ago
Just in case, code to share text:

Intent i = new Intent(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_TEXT, ".....");
i.setType("text/plain");
startActivity(i);

Original comment by a.kosenkov on 17 Aug 2011 at 8:52

GoogleCodeExporter commented 8 years ago

Original comment by web...@gmail.com on 8 Jan 2012 at 3:50