gpt4 book ai didi

Android 在 WebView 上添加按钮?

转载 作者:太空宇宙 更新时间:2023-11-03 11:53:45 24 4
gpt4 key购买 nike

如何在 WebView 上添加按钮?。我有一个 WebView,我想显示一个弹出窗口。为此,我需要在 WebVew 的左下角添加一个按钮。我该怎么做?

最佳答案

我会使用 RelativeLayout .我非常喜欢使用它。这是轻松放置和组织 View 、按钮、布局等的好方法...

Some Example code:

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFD0">

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

<Button
android:id="@+id/My_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:text="My Button!" />
</RelativeLayout>

我认为 View 和按钮将在 XML 中按从上到下的顺序绘制,但也可能相反。使用像这样的边距:

android:layout_marginLeft="15dip"android:layout_marginBottom="10dip"
帮助调整位置

关于Android 在 WebView 上添加按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4932674/

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