Facebook SDK for Mono for Android

本文关键字:for Android Mono Facebook SDK | 更新日期: 2023-09-27 18:27:24

有人能指导我如何在C#中为android的Mono平台集成FB sdk吗。我已经尝试从一些可用的JAVA代码示例中实现,但没有取得任何成功。如果有人能一步一步地指导我遵循说明,并为android平台的Mono提供相同的示例代码,我将不胜感激。

Facebook SDK for Mono for Android

以下是一些内容:

MonoDroid 的Facebook Connect绑定

然后是:

Facebook.MonoTouch

我建议你先看一下Facebook.MonoTouch。

或者你可以尝试使用共享意图:

public void share(String subject,String text) 
{
    Intent intent = new Intent(Intent.ActionSend);
    intent.Type = "text/plain";
    intent.PutExtra(Intent.ExtraSubject, subject);
    intent.PutExtra(Intent.ExtraText, text);
    StartActivity(Intent.CreateChooser(intent, GetString(R.string.share)));
}