VideoView 放置在 SurfaceView 上时在 FrameLayout 中不可见

VideoView not visible in FrameLayout when placed over a SurfaceView

我的 VideoView 似乎只有当它是我的 FrameLayout 中唯一的 child 时才可见。当有第二个 child -- 一个 SurfaceView (即使之后创建了 VideoView,给它一个更高的 z-index) -- 那么 VideoView不再可见。

我有 Vitamio 的扩展 VideoView:

public class AnimationCanvas extends VideoView{
public static AnimationCanvas animationCanvas;
public AnimationCanvas(Context context, AttributeSet attrs){
    super(context, attrs);
    animationCanvas = this;
    setVideoURI(Uri.parse(MainActivity.toRightPath));
    requestFocus();
    start();
    this.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            switch(event.getAction()){
                case MotionEvent.ACTION_UP:
                    System.out.println("UP");
                    setVideoURI(Uri.parse(MainActivity.animationFilePath));
                    requestFocus();
                    start();
                    break;
                case MotionEvent.ACTION_DOWN:
                    System.out.println("Down");
                    break;
            }
            return true;
        }
    });
}

}

这里是 main.xml 文件:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

    <com.temporary.alexcameronelijahapp.gui.MainCanvas
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <com.temporary.alexcameronelijahapp.gui.AnimationCanvas
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</FrameLayout>

当我删除或注释掉 main.xml 文件的 MainCanvas 视图时,AnimationCanvas 工作正常(这些行):

<com.temporary.gui.MainCanvas
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

我的印象是,在 FrameLayout 中,Z-indices 是按照它们添加到布局中的顺序分配的(最后添加的具有最高的 z-index).但是,只要 MainCanvas 也存在,AnimationCanvas 就不可见...

有什么想法吗?

编辑: 很高兴知道我实际上在我的 MainCanvas.

实例上绘制了许多位图

其次,如果我在 AnimationCanvas 的 xml 代码中设置 android:background="#000000",它会在 MainCanvas 上可见,但视频本身仍然不会显示(好像黑色背景以某种方式掩盖了视频?)

编辑 #2: 我相信我已经找到问题所在,但仍然没有解决方案。当我在我的 MainCanvas class 中注释掉我的绘画方法时,这意味着没有位图被绘制到 canvas,然后 AnimationCanvas 是可见的。几乎就好像,即使 AnimationCanvas 在 [=21= 之上,锁定的 MainCanvas's canvas 也不知何故在 AnimationCanvas's [=70 之上=] canvas.

SurfaceView 在可见性和 z 顺序等方面的行为与其他小部件不同。有关详细信息,请参阅 GL Surface and Visibility: Gone。最重要的是,他们只是忽略了可见性。 另请注意,VideoView 只是 SurfaceView 的另一个示例。

尝试上面 post 中的建议之一。对于您的情况,您也可以尝试使用相同的 SurfaceView 作为绘图和视频的目标。