tutorial1_surface_view.xml 746 B

12345678910111213141516171819202122
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. xmlns:opencv="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <org.opencv.android.JavaCameraView
  7. android:layout_width="fill_parent"
  8. android:layout_height="fill_parent"
  9. android:visibility="gone"
  10. android:id="@+id/tutorial1_activity_java_surface_view"
  11. opencv:show_fps="true"
  12. opencv:camera_id="any" />
  13. <EditText
  14. android:id="@+id/field"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:hint="@string/text_hint" />
  18. </FrameLayout>