我正在尝试创建一个库项目以将其用于 Unity3d 插件。一切都是正确的,但是当我尝试显示自定义 progressDialog 时,例如我正在这样做,得到 Resources$NotFoundException
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(com.myapp.test.R.layout.loading, null);
layout.setMinimumWidth((int)(displayRectangle.width() * 0.9f));
layout.setMinimumHeight((int)(displayRectangle.height() * 0.9f));
progress.setView(layout);
我做错了什么?我的库项目(jar 文件)似乎不包含任何布局或资源......我已经输入了 eclipse 的首选项 Is Library true。