It looks like you're new here. If you want to get involved, click one of these buttons!
application:share(text,url,imageUrl) |
static public void share(String textToShare, String urlToShare) { Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent.setType("text/plain"); shareIntent.putExtra(Intent.EXTRA_TEXT, urlToShare); --adding image is too tricky for me : ( startActivity(Intent.createChooser(shareIntent, textToShare)); } |
Likes: theone10
Comments
Actually I began writing one three years ago, but the image sharing part on android was too tricky for me too!
Likes: SinisterSoft, theone10
Maybe just add simple text&url for now? (and remove it later some day, if image sharing plugin will be added to Gideros)
Likes: theone10
"What one programmer can do in one month, two programmers can do in two months." - Fred Brooks
“The more you do coding stuff, the better you get at it.” - Aristotle (322 BC)