可以将webview放在android中的imageview中吗?

时间:2016-01-17 17:57:11

标签: android imageview android-webview

所以我要做的是在webview中放置一个webview。我本质上有一个电视的imageview,我想把我的webview放在其中模拟用户正在看电视。

1 个答案:

答案 0 :(得分:0)

这是不可能的。只有ViewGroup可以包含其他视图 您是否在WebView上尝试过 android:foreground 属性?

<WebView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:foreground="@drawable/tv_frame" />

这是一个例子 preview

请记住,WebView是AbsoluteLayout的子类,它是ViewGroup的子类,因此以下XML是完全合法的:

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:foreground="@drawable/tv_frame">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</WebView>