【问题标题】:Material components TextInputEditText margin of bottom line材质组件 TextInputEditText 底线边距
【发布时间】:2019-01-16 06:24:25
【问题描述】:

我有问题。 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>

【问题讨论】:

  • 这是一个已知问题,MDC-Android 团队正在努力解决。一旦修复可用,我们将跟进。

标签: android components android-textinputlayout android-textinputedittext material-components-android


【解决方案1】:

match_parent 两个领域,一切都会顺利

【讨论】:

    猜你喜欢
    • 2020-09-28
    • 2018-06-04
    • 2018-04-10
    • 2021-02-06
    • 2020-01-24
    • 2019-04-20
    • 1970-01-01
    • 1970-01-01
    • 2018-12-16
    相关资源
    最近更新 更多