我试图将我的apk从android移植到kindle fire但我面临着GUI中的问题 kindle设备没有显示我使用GUI skin和C#编码lang创建的GUI按钮。当我在我的Android设备中使用相同的apk时它工作得很好 你能帮我弄清楚它里面的问题是什么吗? 我已经分享了我的apk截图
在Android设备上播放按钮就在那里 https://drive.google.com/file/d/0B2gE7XRtvFr9Mmdha3FlUEMtUEU/edit?usp=sharing
在kindle上它没有显示播放按钮 https://drive.google.com/file/d/0B2gE7XRtvFr9MEpEdnpyNXpTYVk/edit?usp=sharing
请帮忙 谢谢先进
GUI.DrawTexture(new Rect(0,0,640,960),mainmenubg);
mainMenuScreenFlag=true;
name=screenName.MainMenuscreen;
MoPubAndroid.hideBanner(true);
btnStyle.font = heavaltica;
btnStyle.alignment = TextAnchor.MiddleCenter;
btnStyle.normal.background = (Texture2D)Resources.Load ("Textures/play");
btnStyle.active.background = (Texture2D)Resources.Load ("Textures/play");
btnStyle.fontSize = 50;
if (GUI.Button (new Rect(400,500,191,142)," ",btnStyle)) {
name=screenName.otherScreen; PlaySoundFile (tapSound);
currentGUIMethod = FirstScreen;
}