gpt4 book ai didi

android - 移动(安卓)浏览器 : Remove border from read only input fields

转载 作者:行者123 更新时间:2023-11-29 00:35:54 25 4
gpt4 key购买 nike

这里是第一篇文章,但我已经研究了很长时间,总能找到有用的答案,所以感谢社区之前的帮助:)

我的问题是:我正在使用基本表单字段为我公司的网站构建移动网站。我正在使用只读输入字段计算订单上的总计。问题是在我的 Android 浏览器(可能还有其他浏览器,我还没有完全测试)中,只读字段显示边框,即使我试图删除它 - 请参阅表单底部的摘要部分下面。

这是订单:https://m.eyemagic.net/cc-order.html

也许您可以提供一些帮助?

谢谢!

最佳答案

我猜您正在使用 edittext 作为只读输入字段。如果是这样,要使其与给定的网页相似,只需将 android:background 透明化为:

<EditText
android:id="@+id/txtBoxId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:clickable="false"
android:background="#00FFFFFF"
android:inputType="textNoSuggestions" />

希望对您有所帮助..:)

关于android - 移动(安卓)浏览器 : Remove border from read only input fields,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12718875/

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