Android share link

I want to share link, from my android application, from java, is have use something like this:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "http://www.example.com");

To open snadart chooser for facebook\twitter\email\etc. I heve not ideas, how to to do it from openfl android application.

I don’t think there is anything in OpenFL to do this but you could build your own native extension. Take a look at this page: http://player03.com/2014/08/09/openfl-extensions/

Of couse, I search any haxe lib but found only https://github.com/fbricker/openfl-share
Thanks! Look like all I need.