Android:是否可以动态更改 EditText 的边框颜色?

发布于 2024-08-30 01:11:57 字数 289 浏览 1 评论 0原文

我想更改 EditText 周围的橙色边框。就像当输入有效时,我希望它变成绿色。

替代文本 http://developer.android.com/guide/tutorials/views/images/ hello-relativelayout.png

但是我似乎没有找到一种方法来做到这一点。是否可以?

I would like to change the Orange border around a EditText. Like when the input is valid, I want it to become green.

alt text http://developer.android.com/guide/tutorials/views/images/hello-relativelayout.png

However I do not seem to find a method to do this. Is it possible?

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

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

发布评论

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

评论(1

梦里兽 2024-09-06 01:11:57

不可能轻易改变橙色边框,因为它实际上是 9-patch - 也就是说,整个边框 + 白色背景是 Android 默认使用的 9-patch。它也使用 android:background 属性来设置它。

可以获取 9-patch 的副本(它将在您的 SDK 中),编辑颜色使其变为绿色,然后在代码中对其进行配置,以便在以下情况下将您的 9-patch 设置为 EditText 的背景:输入有效。

It's not possible to change the orange border easily because it's actually a 9-patch - that is, the entire border + white background is a 9-patch that Android uses by default. It uses the android:background attribute to set it, too.

It would be possible to acquire a copy of the 9-patch (it will be in your SDK), edit the color to make it green, then in code configure it so that your 9-patch is set as the background of the EditText when the input is valid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文