问题标签 [textinputlayout]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - TextInputLayout 移除错误边框
我试过
如何在TextInputLayout Android应用程序中设置错误或在更正后将边界设置为默认值
python - 首次单击时清除 TextInput 中的默认文本
我有一个TextInput()
包含一些默认文本的小部件。
当用户在 内部单击时TextInput
,最初在内部的文本会TextInput
消失(这样他就可以插入自己的文本而无需手动删除默认文本)。
- 是否有替代方法来复制上述行为?(例如,一些已经存在的属性
TextInput
) TextInput
如果用户在单击内部并专注于其他小部件后没有输入任何内容,我如何让它自动重新插入文本。我试过on_unfocus: self.text = "(optionally add a description of the bug here)"
了,但没有unfocus
属性。
使用的代码:
android - 如何在 TextInputLayout 中更改提示文本大小
假设我想更改文本大小。我在代码中这样做,它看起来像这样:
当我在条目中写文本时,它看起来像 40dip 文本。但是当条目为空时,提示文本看起来像 16-18dip。
有没有办法改变提示文字的大小?
android - 找不到属性“counterEnabled”的资源标识符
有什么问题?我在我的 gradle 文件中编译了 'com.android.support:appcompat-v7:22.2.0' ,还编译了 'com.android.support:design:22.2.0' 。为什么这不起作用?为什么我会收到这个奇怪的错误?
android - 在 Fragment 中设置错误 TextInputLayout
设置错误消息时,我遇到了 TextInputLayout 问题。我在片段中使用以下包'com.android.support:design:23.1.1'。这是代码
XML 部分
样式
这里是错误
android - textinputlayout errorenabled and showing errors
So I have login form, when user click login I will check the inputs.
First what I do, onlick of login button i call textinputlayout.seterrorenabled(false)
, then when API call is over and I have an error on my editttext i call textinputlayout.seterrorenabled(true)
, textinputlayout.seterror(message)
. Everything is all good, now I click on login again and repeat same process textinputlayout.seterrorenabled(false)
and then after API call is over textinputlayout.seterrorenabled(true)
, textinputlayout.seterror(message)
. However this time the message doesn't show up. What's the problem?
android - 失去焦点后如何为 TextInputLayout 设置提示颜色
我正在使用下面的 xml 代码:
场景:
第 1 步:Edittext1 为空白 - Hinttextcolor = 黑色。
第 2 步:Edittext1 值输入 Hinttext = Orange。
第 3 步:从 Edittext1 到 Edittext2 的 Lostfocus,Edittext1 hinttext=Orange。使用 AppcompactEdittext 和 TextInputLayout。
请帮帮我。
java - TextInputLayout - 动态设置浮动文本颜色
我想以TextInputLayout
编程方式更改浮动标签的颜色以进行控制。
我搜索并仅找到了使用该方法的解决方案setHintTextAppearance
。此方法只接受一个样式参数,这意味着我必须在 xml 中定义样式并在运行时使用它。
这不是我想要的。我希望能够在运行时根据服务器响应设置任何颜色。
是否有任何其他解决方案,例如覆盖类或使用其他方法?
android - 文本输入布局颜色
有没有机会我们可以在不调整主题的情况下更改 TextinputLayout 底线的颜色(既不使用视图上的 (android/app):theme 属性)。
我们不能只通过 TextInputLayout 上的样式属性或者它的 *EditText 子来做到这一点吗?
java - 如何在代码中设置提示文本?
我有:
我需要添加提示文本,如果我在 xml 中添加提示文本,则在 EditText 中:
一切都很好,但是如果我添加etAmount.setHint(R.string.s_amount);
代码 - 字符串(提示文本)不会弹出((,为什么?