问题描述
加载任何XML布局时,Eclipse正在关闭此消息 Java已启动,但返回退出代码-1073741571
我的eclipse.ini
-startup
plugins $ / $ / $ / $
-product
com.android.ide.eclipse.adt.package.product
--launcher.XXMaxPermSize
256M
-showsplash
com.android .ide.eclipse.adt.package.product
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi .requiredJavaVersion = 1.6
-Xms512m
-Xmx1024m
-Xss1024k
-Declipse.buildId = v21.0.0-519525
感谢大家分享解决方案我似乎已经损坏了xml(我仍然不知道是什么损坏的意思,但它是强迫IDE崩溃)这里是一个代码片段:
< com.android.example.EndlesScrollView ...
< FrameLayout ...
< LinearLayout ...
每次我试图在eclipse中使用图形布局
视图崩溃,所有我确实是完全删除该XML,并从头开始重新创建,XML标签似乎有问题,从而阻止图形布局
正确显示正确的UI。 p>
Eclipse is closing while loading any XML layout with this message Java was started but returned exit code -1073741571
my eclipse.ini
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813
-product
com.android.ide.eclipse.adt.package.product
--launcher.XXMaxPermSize
256M
-showsplash
com.android.ide.eclipse.adt.package.product
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.6
-Xms512m
-Xmx1024m
-Xss1024k
-Declipse.buildId=v21.0.0-519525
Thanks everyone for sharing solutions with me it seem that I had corrupted xml ( I am still not sure what corrupted means but it was forcing the IDE to crash) here is a snippet:
<com.android.example.EndlesScrollView...
<FrameLayout...
<LinearLayout...
Each time I tried to use Graphical layout
view in eclipse the IDE crashes, All I did was to delete that XML totally and re-create it from scratch, it seems something wrong with the XML Tags which preventing the Graphical layout
from correctly displaying the correct UI.
这篇关于Eclipse:Java已启动,但返回退出代码-1073741571的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!