我创建了一个新的 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