gpt4 book ai didi

android - PopupWindow 中 webview 上方的按钮在 2 次后响应 onClick

转载 作者:行者123 更新时间:2023-11-29 21:51:52 25 4
gpt4 key购买 nike

我在它的右上角上方有一个 WebView 和一个 Button我的问题是,当我第一次点击按钮时它不起作用,第二次点击(点击)工作正常。

其xml如下:

<?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">

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="10dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:layout_marginLeft="4dp"
android:background="@drawable/popup3"
>
<WebView
xmlns:ptr="http://schemas.android.com/apk/res-auto"
android:id="@+id/webviewActionView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minHeight="200dp"
android:minWidth="200dp"
android:scrollbars="none" >
</WebView>
</LinearLayout>
<Button
android:id="@+id/popup_closer"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginBottom="0dip"
android:layout_marginLeft="0dip"
android:background="@drawable/close_popup"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:text=" " />
</RelativeLayout>

它看起来像下面这样:Click Here

现在,当我在代码中将 ButtonView 放在 LinearLayout 之前时,它从第一次点击(点击)开始工作

但它看起来像这样:Click Here

最佳答案

尝试

            android:focusable="true"
android:focusableInTouchMode="true"

删除或设置为 false。

关于android - PopupWindow 中 webview 上方的按钮在 2 次后响应 onClick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14184519/

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