如何在webview上放置按钮

时间:2011-08-10 11:14:22

标签: android layout

我想在后台我会展示一个webview。在前景上的webview上我想放置另一个按钮。如何实现同样的目标。我可以使用地图视图加载googlemap。但无法在上面放一个按钮。我在mapview中显示谷歌地图。

enter image description here

由于

1 个答案:

答案 0 :(得分:1)

谢谢大家。我通过使用Framelayout获得了解决方案。

<FrameLayout 

        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/header"
        android:layout_above="@+id/footer">
        <WebView
            android:id="@+id/GD_webview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_above="@+id/footer" />

            <Button
            android:layout_centerVertical="true"
            android:id="@+id/setTimeBtn"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_width="wrap_content"
            android:background="@drawable/settime"
            android:layout_gravity="bottom"
            android:layout_marginBottom="15dip"></Button>
    </FrameLayout 
>