- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题。 TextInputLayout 相对于该行有边距或填充。
我需要这条线是全宽。
文档: https://material.io/develop/android/components/text-input-layout/
代码:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/inputLayoutEmail"
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:paddingBottom="0dp"
app:boxBackgroundColor="@color/colorBgDisableButton"
app:boxCornerRadiusTopEnd="10dp"
app:boxCornerRadiusTopStart="10dp"
android:hint="@string/text_signup_email"
android:textColorHint="@color/colorTextInput"
android:focusable="false"
android:clickable="false"
app:errorEnabled="true"
app:errorTextAppearance="@style/ErrorTextAppearance"
>
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/inputTextEmail"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:backgroundTint="@color/colorLineInput"
android:fontFamily="@font/century_gothic"
android:imeOptions="actionNext"
android:inputType="textEmailAddress"
android:lines="1"
android:maxLines="1"
android:paddingStart="22dp"
android:paddingBottom="20dp"
android:textColor="@color/colorTextInput"
android:textSize="14sp"
android:enabled="false"
android:focusable="false"
android:clickable="false"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
/>
</com.google.android.material.textfield.TextInputLayout>
最佳答案
match_parent
两个字段都会顺利进行
关于android - Material 组件 TextInputEditText 底线边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51755972/
我有一个布局,我想在其中显示一堆编辑文本和一个日期选择器。因为我想对所有字段进行相同的设计,所以我发现我也需要为日期选择器使用编辑文本,但使其不可编辑但可点击。下面是我的编辑文本的 xml 代码,将用
我正在使用 TextInputEditText s 作为文本输入,当我选择它们时,提示会向上移动,但会被框的轮廓覆盖。有谁知道为什么会这样? 照片 : 代码 : 最佳答案
如果我使用最新的 Material 库版本 com.google.android.material:material:1.2.0-alpha02,我会遇到 TextInputEditText 及其提示
我想设计如下: 在输入用户输入之前: 用户输入数字 是否可以扩展 TextInputEditText 来实现这个请求? 我一直在寻找设计讨论, how can i underline each cha
在我的应用程序中,我有一个 EditText。 这个EditText用于货币输入,例如:2.23, 9.99 换句话说,用户可以输入 2 然后 . 然后 23 到这个 EditText 为了实现 Ed
我有一个包含在 TextInputLayout 中的 TextInputEditText。但是,在某些键盘上,当用户有拼写建议并点击单词以显示建议的弹出列表时,我的应用程序会严重崩溃,将键盘留在屏幕上
我的 EditText 有一个大问题,它在我将焦点从元素上移开之前不显示任何输入。当我点击输入时,键盘出现,当我打字时,编辑 TextView 中没有显示任何内容。输入仅在我关闭键盘时显示 不是颜色的
我正在研究一种要求所有 View 都向左对齐的设计。 我正在使用 TextInputLayout && TextInputEditText hint 有空格& text通过设置 解决padding 至
我有一个 Android 屏幕,可以接收用户的电子邮件。下面是代码 fragment ,我想删除文本下方出现的下划线。 我已经尝试过android:background="@null"和
我正在尝试适应 TextInputEditText到整个屏幕,但这并非没有问题: 输入类型: TextInputEditText tv = findView
我一直在尝试将应用程序的 fontfamily 更改为 Advent Pro。问题是只有我的 textinputedittext 产生此错误 java.lang.RuntimeException: F
我试图通过创建一个 TextDrawable 然后使用 compoundDrawable 设置它来为我的 TextInputEditText 添加一个后缀。一切都进行得相当顺利,除了可绘制对象被剪裁到
我需要删除 TextInputEditText 的底线我将背景设置为透明和 null 但没有任何效果。 bg_textinput_layout 最佳答案 您可以应用 app:b
我正在尝试将 TextInputEditText 设置为只读,但我发现光标快速闪烁并触发了点击。 我尝试设置 isFocusable = false 和 isClickable = false。 XM
我在 textInputLayout 中使用 textInputEditText我必须为我的 editText 设置背景才能为我的 editText 实现带边框的 View 。但是当我在 textIn
我尝试在我的 XML 中使用 TextInputEditText,但我遇到了这个错误: Caused by: android.view.InflateException: Binary XML fil
我想更改 TextInputEditText 提示的文本颜色。似乎无论我更改什么,颜色始终是主要应用程序主题的颜色。 和基本样式
我的 Activity 中有这段代码 public class RegisterActivity extends AppCompatActivity { private static final St
我将 TextInputEditText 与 databinding 一起使用 - 直到最近它运行良好。这是出现此问题的布局之一:
我有一个简单的 TextInputEditText嵌套在 TextTnputLayout . 我正在尝试制作 TIL与 TIET 中给出的提示一样长. 但问题是,它没有显示任何东西 我必
我是一名优秀的程序员,十分优秀!