"Expand" 一个网络视图到 android activity

"Expand" a webview into an android activity

我有一个 android activity,其中包含一些图形元素,例如按钮、文本字段、进度条等... 当我调用 loadUrl() 时(当页面正在加载时),我还有一个我想要的不可见 ("gone") webview 出现并且 "expand" OVER activity 的所有元素。 activity 具有线性布局。 有可能吗?怎么样?

<WebView
    android:id="@+id/webView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:visibility="gone"/>

感谢大家

您需要使用 RelativeLayout 或 FrameLayout,而不是线性布局。两者都提供重叠。或者你可以用它们中的任何一个包裹你的线性布局。

RelativeLayout

<RelativeLayout>
   <LinearLayout/> // your compontents, use gone to show webview
   <WebView/>      // use visible, vice-versa
</RelativeLayout>