gpt4 book ai didi

android - 如何在 webview 上放置按钮

转载 作者:行者123 更新时间:2023-11-29 02:11:33 24 4
gpt4 key购买 nike

我想在后台显示一个 WebView 。在前台的 webview 上,我想放置另一个按钮。如何实现相同。我可以使用 map View 加载 googlemap。但无法在其上放置按钮。我在 map View 中显示谷歌地图。

enter image description here

谢谢

最佳答案

谢谢大家。我通过使用 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
>

关于android - 如何在 webview 上放置按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7009877/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com