当视频流在约束布局中加载时,它隐藏了在 Android 中发布我自己的相机的相对布局视图?

When Video stream load in constraint layou it hide relativelayout view which publishing my own camera in Android?

我正在创建需要通过实时视频通话进行交流的应用程序。为此我用了 (https://tokbox.com/developer/sdks/android/) Tokbox API (Vonage API)。 右下角的相机是我的相机。而全屏摄像头是对手摄像头。

问题: 当我 运行 android 8 OS 版本的应用程序时。它完美地工作正常它显示了两个视频。 当我 运行 android 10 OS 版本的应用程序时,它会在对手视频通话时隐藏我自己的底角视频。

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorWhite">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/mPublisherViewContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent">

        <ImageView
            android:id="@+id/imgNoAttendees"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/_10sdp"
            android:src="@drawable/no_participant"
            app:layout_constraintBottom_toTopOf="@+id/txtWaitAttendees" />

        <com.app.readyb.customview.textview.CustomTextAxiReg
            android:id="@+id/txtWaitAttendees"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:textColor="@color/colorBlack"
            android:textSize="@dimen/_12ssp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.5"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/imgNoAttendees"
            app:layout_constraintTop_toTopOf="parent" />

        <RelativeLayout
            android:id="@+id/relativeVideo"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

    <RelativeLayout
        android:id="@+id/relPublisherView"
        android:layout_width="@dimen/_100sdp"
        android:layout_height="@dimen/_130sdp"
        android:layout_gravity="end|bottom"
        android:layout_marginBottom="@dimen/_15sdp"
        android:padding="@dimen/_10sdp" />

    <include layout="@layout/cm_bottom_sheet_persistent" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

Android OS 8 截图

Android OS 10 截图

抱歉,我不想回答我自己的问题,但我想回答,因为它会帮助其他开发人员。

这行我需要在会话连接后添加。

if (mPublisher.getView() instanceof GLSurfaceView) {
            ((GLSurfaceView) mPublisher.getView()).setZOrderOnTop(true);
        }