我在我的項目中使用FreshPlanet KeyboardSize ANE。我已成功添加到我的項目中,但是當我運行時ANE擴展上下文null
MeasureKeyboard.getInstance().setKeyboardAdjustNothing();
我收到以下錯誤消息。
ArgumentError: Error #3500: The extension context does not have a method with the name setKeyboardAdjustNothing. at flash.external::ExtensionContext/_call() at flash.external::ExtensionContext/call() at com.freshplanet.ane.KeyboardSize::MeasureKeyboard/setKeyboardAdjustNothing()e
我該如何解決這個問題?
謝謝。
你在設備上遇到這個錯誤嗎?或者當你在電腦上測試電影? –
我進入了設備和adt.exe。我正在使用Intellij IDEA。 – berkayk
我認爲這可能是ANE中的一個錯誤。我查看了com.freshplanet.ane.KeyboardSize源文件,我不認爲它創建了正確的上下文。它爲「com.freshplanet.KeyboardSize」而不是「com.freshplanet.ane.KeyboardSize」創建擴展上下文。您可以通過嘗試調用MeasureKeyboard.getInstance() –