Thursday 19 June 2014

Share Your Data In Social Networks without API :-D


Share Your Data In Social Networks Using Intent :-)  Just Simple !!!!!!


      Inside Button click Event 

       Intent shareIntent = new Intent();
      shareIntent.setAction(Intent.ACTION_SEND);
      shareIntent.setType("text/plain");
      shareIntent.putExtra(Intent.EXTRA_TEXT, "Hello, from tutorialspoint");
      startActivity(Intent.createChooser(shareIntent, "Share your thoughts !!!"));





Share Your Data In Social Networks Using  Api :-)   Simple !!!!!!

http://sunil-android.blogspot.in/2013/08/facebook-integration-with-android-app.html




No comments:

Post a Comment

How to do text writing animation?  In Android Development we do not have the option to use any other custom font in our default Tex...