使用下面的 xml,我试图在播放音频时显示背景图像,问题是我看不到背景图像,它被播放器的黑屏覆盖...谢谢!
编辑
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/containerView"
android:background="@android:color/transparent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#90ffffff" >
<VideoView
android:id="@+id/videoView"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
>
</VideoView>
</FrameLayout>
</RelativeLayout>