我可以将WebView与ImageButton重叠吗?

时间:2014-03-06 14:49:39

标签: android android-layout android-webview

我想要创建的内容应如下所示:

enter image description here

我想要这样,因为我希望按钮能够覆盖webview内容的一部分,使用户无法访问。

2 个答案:

答案 0 :(得分:1)

您可以使用FrameLayout执行此操作,如下所示......

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <WebView
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:text="Button" />

</FrameLayout>

答案 1 :(得分:0)

是的你可以这样做。为了这个目的,你必须使用相对布局。首先你要添加webview,然后添加图像按钮并将重心底部设置为图像按钮。我认为这可以帮助你。

 <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <WebView 
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_marginBottom="20dp"
            />
        <ImageButton 
            android:layout_width="fill_parent"
            android:layout_height="40dp"
            android:background="@android:color/darker_gray"
            android:layout_alignParentBottom="true"
            />
    </RelativeLayout>