I have OpenCV and Android installed in my Eclipse. Below is one of my layout files:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:opencv="http://schemas.android.com/apk/res-auto" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <org.opencv.android.JavaCameraView android:layout_width="fill_parent" android:layout_height="fill_parent" android:visibility="gone" android:id="@+id/hello" opencv:show_fps="true" opencv:camera_id="any" /> </LinearLayout>
The Eclipse compiler complains:
No resource identifier found for attribute 'show_fps' in package No resource identifier found for attribute 'camera_id' in package
source share