加載佈局axml文件時錯誤,當我創建一個axml文件,並嘗試在Android的佈局設計視圖中打開它,我得到followign錯誤消息:Xamarin:在安卓
"Connection to the layout renderer failed. This may be caused by a misconfiguration of Java"
,並與下面的堆棧跟蹤:
java.lang.NoClassDefFoundError: com/android/utils/ILogger
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
at java.lang.Class.getMethod0(Class.java:3018)
at java.lang.Class.getMethod(Class.java:1784)
at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
Caused by: java.lang.ClassNotFoundException: com.android.utils.ILogger
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 7 more
Error: A JNI error has occurred, please check your installation and try again
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=350m; support was removed in 8.0
Exception in thread "main"
我已經試過到目前爲止做的是重新安裝了Java JDK,從1.7與64位版本升級它1.8以及降級,始終。試圖引入環境變量_JAVA_OPTIONS並改變它的值-XX:MaxPermSize = 256m,但沒有幫助。
還有其他解決方案,但它們僅適用於iOS上的xamarin studio,因爲我在Windows上使用與Visual Studio 2015的xamarin集成,所以它們不適用。
所以我的問題是,有沒有解決這個問題?
P.S請說,如果我沒有提供足夠的信息或不清楚。
謝謝。