【发布时间】:2015-08-25 11:41:29
【问题描述】:
我最近在 Play 商店发布了一款游戏。在游戏中有一个分享按钮,它使用资产中的宣传图片,添加一些文本并使用 Android 原生分享实用程序进行分享。我知道FB不允许为用户输入文本,但图像总是无法添加到帖子中。
我已经为这个问题绞尽脑汁很多天了。我安装了 Facebook sdk,它本身并没有解决问题,但我不确定如何继续希望按钮允许用户在共享时选择要使用的服务,而不仅仅是使用 facebook sdk 共享.
这是我正在使用的代码:
yield return new WaitForEndOfFrame();
if (!Application.isEditor)
{
string fromPath = "jar:file://" + Application.dataPath + "!/assets/";
string toPath = Application.persistentDataPath + "/";
string[] filesNamesToCopy = new string[] { "a.txt", "b.txt" };
foreach (string fileName in filesNamesToCopy)
{
Debug.Log("copying from " + fromPath + fileName + " to " + toPath);
WWW www1 = new WWW(fromPath + fileName);
yield return www1;
Debug.Log("yield done");
File.WriteAllBytes(toPath + fileName, www1.bytes);
Debug.Log("file copy done");
}
// code to open the image and share it
AndroidJavaClass intentClass = new AndroidJavaClass("android.content.Intent");
AndroidJavaObject intentObject = new AndroidJavaObject("android.content.Intent");
intentObject.Call<AndroidJavaObject>("setAction", intentClass.GetStatic<string>("ACTION_SEND"));
AndroidJavaClass uriClass = new AndroidJavaClass("android.net.Uri");
AndroidJavaObject uriObject = uriClass.CallStatic<AndroidJavaObject>("parse", "jar:file://" + Application.dataPath + "!/assets/" + "Promo.jpg");
intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_STREAM"), uriObject);
intentObject.Call<AndroidJavaObject>("setType", "text/plain");
intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TEXT"), "I scored " + score + " in Space Drill, try to beat me! #spacedrill https://play.google.com/store/apps/details?id=com.AbsinthePie.space_drill");
intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_SUBJECT"), "SUBJECT");
intentObject.Call<AndroidJavaObject>("setType", "image/jpeg");
AndroidJavaClass unity = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity");
currentActivity.Call("startActivity", intentObject);
}
任何提示或建议将不胜感激。 感谢阅读!
【问题讨论】:
-
您不使用 Facebook SDK for unity 执行此操作的任何特殊原因?他们有一个功能,允许您在共享时从本地存储添加图像
标签: android facebook unity3d share