Android - 库xmlns的ClassNotFoundException

时间:2015-09-24 12:24:34

标签: android classnotfoundexception

我有一个位于以下项目的库项目:Project / extralibs / folder。

现在我在xml中有这个视图:

  <com.winsontan520.WScratchView
        xmlns:wsv="http://schemas.android.com/apk/res-auto"
        android:id="@+id/scratch_view"
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:layout_centerInParent="true"
        wsv:antiAlias="true"
        wsv:overlayColor="#0000ff"
        wsv:revealSize="20dp"
        wsv:scratchable="true" />

现在我得到了#34;找不到属性的资源标识符。&#34;错误。 我试图将xmlns的路径更改为/ lib / lib-auto和库路径,但在运行后获取ClassNotFoundException。

1 个答案:

答案 0 :(得分:0)

没有必要构建外部jar。尝试从构建路径中删除它并按照以下步骤操作:

  1. 在Android项目的根目录中创建一个名为libs的文件夹。
  2. 将jar添加到该文件夹​​。
  3. 右键单击jar并单击以添加到构建路径。
  4. 清理您的项目并再试一次。