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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en