0

我正在尝试为我的应用程序获取ArcMenu

该代码本身运行良好,但我不知道如何使其与另一个项目一起使用。它看起来不像一个 Android 库项目......

当我尝试将此项目与我自己的项目一起使用时,这是我在 Eclipse 控制台中得到的:

res/layout/arc_menu.xml:4: error: No resource identifier found for attribute 'fromDegrees' in package 'com.capricorn'
res/layout/arc_menu.xml:4: error: No resource identifier found for attribute 'toDegrees' in package 'com.capricorn'
res/layout/ray_menu.xml:4: error: No resource identifier found for attribute 'childSize' in package 'com.capricorn'
res/layout/ray_menu.xml:4: error: No resource identifier found for attribute 'leftHolderWidth' in package 'com.capricorn'
4

2 回答 2

2

编辑

我分叉了 ArcMenu 并将其发布在 Github 上。

现在出现了更好的重新编码:https ://github.com/siyamed/android-satellite-menu

我建议你使用那个。

于 2012-10-16T15:18:51.753 回答
0

似乎在您的 XML 上您没有正确定义名称空间。

例如对于所有 android 框架的东西是: xmlns:android="http://schemas.android.com/apk/res/android"

我建议检查您的示例,这些示例适用于 ArcLibrary。

于 2012-10-11T13:43:44.623 回答