我是 android 的初学者。我想在 webview 上叠加图像。我将 Framelayout 与 webview 和 imageview 一起使用。它可以正常工作。但是当视频在 web 视图中播放时,图像不会显示。如何在播放器中显示图像?我在下面提到了我的代码。请帮我
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0dp"
android:layout_margin="0dp">
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="0dp"
android:padding="0dp"
android:scaleType="center"/>
<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center"
android:contentDescription="@string/webviewexample"
android:src="@drawable/image"/>
</FrameLayout >