我创建了一个新的GLView组件,用于不同的项目。在正确构建库之后,我正在尝试将它添加到我的测试应用程序中的xml布局中,但它似乎无法正常工作,因为它会抛出一个classnotfound异常。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:lib="http://schemas.android.com/apk/res-auto"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@android:color/darker_gray">
<com.exapmple.library.CustomView
android:id="@+id/glsurfaceview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
外部项目中的类是:
public class CustomView extends GLSurfaceView
答案 0 :(得分:0)
如何将图书馆附加到项目中?
作为jar lib还是作为Library项目?
我认为问题是配置错误。可能是jar文件放在“lib”文件夹而不是“libs”。