gpt4 book ai didi

android - 如何在android中的JavaCameraView上覆盖TextView

转载 作者:行者123 更新时间:2023-11-29 23:16:37 25 4
gpt4 key购买 nike

我想在 Android 中的 JavaCameraView 上覆盖透明的 TextView,就像这张照片一样。我怎样才能做到这一点?我试图将 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" />

最佳答案

您应该使用 ConstraintLayout 或 RelativeLayout。在这些 View 中, View 可以相互叠加。

试试这个:

<?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"
/>

关于android - 如何在android中的JavaCameraView上覆盖TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55225722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com