Skip to content

Instantly share code, notes, and snippets.

@aritzg
Created July 9, 2013 13:54
Show Gist options
  • Select an option

  • Save aritzg/5957529 to your computer and use it in GitHub Desktop.

Select an option

Save aritzg/5957529 to your computer and use it in GitHub Desktop.
clickOnBtnShare
@Click(R.id.btnShare)
void clickOnBtnShare(){
Intent shareIntent = new PlusShare.Builder(this)
.setType("text/plain")
.setText("Testing Google+ Share!")
.setContentUrl(Uri.parse("http://txootx.org/web/guest/play"))
.getIntent();
startActivityForResult(shareIntent, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment