我在eclipse中有一个项目用于某些Android应用程序。默认情况下它是在没有菜单的情况下创建的,现在我已经尝试添加一些...
我无法编译项目 - 收到此消息
[2014-04-04 08:10:27 - Dex Loader] Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.
[2014-04-04 08:10:27 - mksSQL] Conversion to Dalvik format failed: Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.
我添加了以下菜单:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
答案 0 :(得分:0)
有时会发生日食。
尝试以下方式
#1再次尝试cleaning
您的项目和build
。
或
#2右键单击Project
→转到Android tools
→然后单击android support library.
,然后清理并构建项目。
HIH。