如何在Android中的JavaCameraView上覆盖TextView

时间:2019-03-18 16:16:46

标签: android

我想在Android TextView上覆盖透明的JavaCameraView,就像这张照片一样。我怎样才能做到这一点?我试图将TextView放在JavaCameraView中,但是没有用。

enter image description here

<org.opencv.android.JavaCameraView
    android:id="@+id/activity_java_surface_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

1 个答案:

答案 0 :(得分:1)

您应该使用ConstraintLayout或RelativeLayout。在这些视图中,视图可以彼此放在顶部。

尝试一下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                                   xmlns:android="http://schemas.android.com/apk/res/android"
                                                   xmlns:app="http://schemas.android.com/apk/res-auto"
                                                   xmlns:tools="http://schemas.android.com/tools"
                                                   android:layout_width="match_parent"
                                                   android:layout_height="match_parent">

    <org.opencv.android.JavaCameraView
        android:id="@+id/activity_java_surface_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

    <TextView
        android:id="@+id/text_overlay"
        android:layout_width="0dp"
        android:layout_height="60dp"
        android:text="test text"
        android:background="#00000000"
        app:layout_constraintBottom_toBottomOf="@id/activity_java_surface_view"
        app:layout_constraintEnd_toEndOf="@id/activity_java_surface_view"
        app:layout_constraintStart_toStartOf="@id/activity_java_surface_view"
        />