如何使视图变灰。具体来说是一个EditText?
嘿家伙的 首先感谢您阅读本文。 当我失去焦点时,我很难找到更改 EditText 的方法。 我希望它在发生这种情况时变灰,但我不希望它被禁用,因为用户可以触摸它并稍后编辑文本。
有人吗?
问候!
Hey guy's
First of all thanks for reading this.
I'm having trouble to find a way to change my EditText when I loose focus to it.
I would like it to be greyed out when this happens, but I don't want it to be disabled because the user can touch it and edit the text later.
Anyone?
Greetings!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为文本设置不同的颜色基于 OnFocusChangeListener
另一个选项是在 xml 中设置样式。有关详细信息,请参阅此问题:Android:聚焦时更改样式
要更改不透明度,请使用setAlpha。在这个答案中,我展示了如何在动画中执行此操作: 关于自定义应用程序 ui 和 AlphaAnimation 的两个问题
You can set different colors to the text based on an OnFocusChangeListener
Another option is to set a style in xml. See this question for details: Android: change style when focused
To change the opacity, use setAlpha. In this answer I show it how to do it in an animation: Two questions about custom app ui's and AlphaAnimation