Android:是否可以动态更改 EditText 的边框颜色?
我想更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可能轻易改变橙色边框,因为它实际上是 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.