问题标签 [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.

0 投票
2 回答
933 浏览

android - 如何在单行上保持两个 TextInputLayouts 一致的宽度

我有两个TextInputLayout在一条线上。它们在渲染时占据屏幕的一半: 在此处输入图像描述

但是,如果我在一个中输入大量文本而在另一个中输入更少,它们的宽度会发生变化,其中一个会变得平滑:

在此处输入图像描述

无论输入多少文本,我如何使它们保持与开始时相同的比例?

0 投票
2 回答
2364 浏览

android - 当编辑文本不在焦点时,使用 textinputlayout 隐藏密码切换

这是我在项目中使用的代码:

这就像它说的那样工作,即它为我提供了嵌套编辑文本的密码切换。我想要的是当编辑文本没有焦点时是否可以隐藏它?

0 投票
1 回答
1999 浏览

android - 如何同时应用 TextInputLayout 样式和 errorTextAppearance 样式

我正在尝试在文本输入中实现这两种样式,但在应用errorTextAppearance样式时它不起作用我收到错误。

XML

JAVA

风格

0 投票
3 回答
13291 浏览

android - 如何以编程方式使用 OutlineBox 创建 TextInputLayout

我想用 Widget.MaterialComponents.TextInputLayout.OutlinedBox 样式创建 TextInputLayout。我尝试了很多方法,但无法获得所需的结果。这是我的代码。

我也试过:

我想创建这样的视图。在此处输入图像描述

0 投票
2 回答
760 浏览

android - Switch inside TextInputLayout

I would like to accomplish the task shown in the two images below; more precisely, be able to "extend" somehow the TextInputLayout to the Switch so that it is included in the forementioned layout, along with the TextInputEditText.

All tries I have done so far have failed me.

The XML code for one item is listed below:

And here are the two images (image 1 is how it's currently presented and image 2 is what I would like to accomplish - see Linkedin). Though, not sure if it's possible to do this.

enter image description here

enter image description here

0 投票
4 回答
5423 浏览

android - 如何从 Kotlin 中的 TextInputLayout 获取文本?

我有一个 ID 为 login_mobile_number 的文本输入布局,我已导入此模块以停止使用findViewById方法:

每当我尝试从 TextInputLayout 获取文本时

它返回对象名称而不是输入的字符串,如下所示:

为什么会发生这种情况?从该字段获取字符串的正确方法是什么?

0 投票
4 回答
2273 浏览

android - RTL android:TextInputLayout 中的提示

我有这个 XML 布局:

我想hint在右侧显示文字,但使用后layoutDirection仍然textAlignment显示在左侧,我该怎么做?

我看到了这个链接,但没有解决我的问题。

0 投票
2 回答
1699 浏览

android - 如何在 TextInputLayout 中将错误文本对齐设置为居中

如何将错误文本消息对齐到edittext的中心和下方。我尝试对齐但它不起作用。这是我的代码:

在此处输入图像描述

xml

Java 类

0 投票
1 回答
131 浏览

android - 是否可以在 TextInputLayout 中为错误标签保留空间?

我的布局中有多个 TextInputLayouts,我需要验证字段(如果它们无效则显示错误文本)。

但是TextView包含错误是由TextInputLayout动态添加的,因此它会更改布局高度,并且底部的所有视图都将降低 added 的高度TextView

所以问题是:即使没有显示错误,我是否可以为错误文本保留空间?

0 投票
4 回答
825 浏览

android - 聚焦 TextInputLayout 时出现 2 个提示

我在使用 TextInputLayout 时遇到了一些问题。

当 TextInputLayout 获得焦点时,我看到提示文本浮动在文本字段上方并且也停留在文本字段上。附上图片:在此处输入图像描述

当我在字段上输入内容时,文本会与文本字段上的提示重叠。

在此处输入图像描述

这是我的 TextInputLayout 的 XML

我正在使用 android 材料组件库,如下所示:

实施 'com.google.android.material:material:1.0.0'

当 TextInputLayout 的焦点集中在上面有文本时,如何让提示 TextInputLayout 隐藏?

这是完整的布局:

基本活动布局