Sunday, March 13, 2011

Re: [android-developers] Re: Integrating Facebook To my App

thank you for your replies. I have done with my Facebook integration. 

On Sat, Mar 12, 2011 at 6:29 AM, LAM_Creations <lam.creations.06@gmail.com> wrote:
Do you want it to just be Facebook or are you looking to offer the data to any network/app that can receive the data? If you just want your app to share the data to where ever the user wants you can use an intent like this:

Intent shareData = new Intent(Intent.ACTION_SEND);
shareData.setType("text/*");
shareData.putExtra(Intent.EXTRA_TEXT, "Text Data Here");
startActivity(Intent.createChooser(shareData, "Share This Data..."));

You can adjust this to accommodated what ever the data is that you wish to send. Hope that helps.

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en



--
always as a friend
-santhosh-

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment