我有一个javacameraview的问题,我用它作为分类器,我想在屏幕的底部插入一个文本框,当应用程序看到一个特殊对象时,它可以插入一个名称。 我修改了activity_main.xml,但它无法正常工作。 这是修改过的文件:
<RelativeLayout 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="match_parent"
android:layout_height="225dp"
android:orientation="horizontal">
<!-- com.example.name.opencvdetect.CameraModify -->
<org.opencv.android.JavaCameraView
android:layout_width="match_parent"
android:layout_height="225dp"
android:id="@+id/cameraAndroid"
opencv:show_fps="true"
opencv:camera_id="any"
/>
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="629dp"
android:layout_height="51dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true">
<TextView
android:id="@+id/txtDisp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Here where the name of the object must be insert."
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
</RelativeLayout>
但是当我在手机上运行它(Nexus 5)时,我看到全屏但是我没有看到textview可以有人帮助我吗?感谢。