gpt4 book ai didi

Android 库项目 - 资源 $NotFoundException

转载 作者:行者123 更新时间:2023-11-29 16:08:00 25 4
gpt4 key购买 nike

我正在尝试创建一个库项目以将其用于 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 的首选项是库是否为真。

最佳答案

您不能将资源打包到jar 文件中。建议您创建一个库项目并在您的 android 项目中引用它。

有关更多信息,请查看下面的链接

http://developer.android.com/tools/projects/index.html

右键单击项目,转到属性,选择 android,选择 Is Library(勾选)。

enter image description here

在你的android项目中引用一个库项目

右键单击您的 android 项目,转到属性,选择 android,单击添加,浏览并添加库项目。点击应用并确定。

添加 actionbaesherlock 库项目的快照。请注意绿色勾号。

enter image description here

清理并构建。

http://developer.android.com/tools/projects/projects-eclipse.html

关于Android 库项目 - 资源 $NotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16341439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com