VideoView 上的 ImageView 可见吗?

ImageView visible on the VideoView?

我希望能够在图像视图中设置可见图像 ( 在 videoview 中播放视频时占据半个屏幕)。可以吗?

像这样创建一个xml,

为视图添加相同的权重并使其高度为 0dp,它将采用相同的高度。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    >

  <ImageView
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_weight="1"
      android:background="#ccc"
      />
  <VideoView
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_weight="1"
      />
</LinearLayout>

它会帮助你。

谢谢你,我正在尝试在这样的相对布局中执行此操作,但是当我更改图像可见性时视频在图像上方......我想要相反的结果,所以视频上的图像。

<RelativeLayout 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"
    tools:context=".PatternSelection" >
    <ImageView
        android:id="@+id/settse"
        android:layout_width="480dp"
        android:layout_height="270dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:visibility="invisible"
        app:srcCompat="@drawable/sett" />

    <VideoView
        android:id="@+id/videoView"

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true" />

</RelativeLayout>