EditText 触摸时不会突出显示

发布于 2024-09-29 06:31:58 字数 63 浏览 1 评论 0原文

我以为这个功能会默认激活。

如何设置 EditText 框在用户触摸它时进行正常的橙色突出显示?

I assumed this feature would be activated by default.

How do I set an EditText box to do the normal orange highlighting when a user touches it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云悠悠 2024-10-06 06:31:58

默认情况下,仅当用户单击它时才会突出显示。您不必为此编写任何内容。

<EditText
    android:layout_below="@+id/Button04" android:id="@+id/EditText01"
    android:layout_height="wrap_content" android:text="@+id/EditText01"
    android:layout_width="wrap_content"></EditText>

By default it is highlighted only when user clicks on it. You don't have to write anything for that.

<EditText
    android:layout_below="@+id/Button04" android:id="@+id/EditText01"
    android:layout_height="wrap_content" android:text="@+id/EditText01"
    android:layout_width="wrap_content"></EditText>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文