禁用/删除TextInputLayout XML中的浮动标签提示文本

时间:2016-02-16 04:10:47

标签: android android-textinputlayout

这可能看似违反直觉,但有没有办法在TextInputLayout中禁用或删除浮动标签提示?我想使用TextInputLayout而非EditText的原因是TextInputLayout提供的计数器。

这是我到目前为止所做的:

<android.support.design.widget.TextInputLayout
            android:id="@+id/textContainer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scrollbars="vertical"
            app:counterEnabled="true"
            app:counterMaxLength="100">

            <EditText
                android:id="@+id/myEditText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" 
                android:gravity="top|left"
                android:inputType="textMultiLine|textCapSentences"
                android:maxLength="100"
                android:scrollbars="vertical"
                android:hint="This is my cool hint"/>

        </android.support.design.widget.TextInputLayout>

11 个答案:

答案 0 :(得分:100)

启动支持库版本23.2.0,您可以调用

<p></p>

或将其放入TextInputLayout xml中:

setHintEnabled(false)

虽然该名称可能会让您认为它删除了所有提示,但它只会移除浮动提示。

相关文档和问题:http://developer.android.com/reference/android/support/design/widget/TextInputLayout.html#setHintEnabled(boolean)

https://code.google.com/p/android/issues/detail?id=181590

答案 1 :(得分:31)

实现这一目标可能有三种方法:

1 android:hint上的TextInputLayout设置为空格_字符,并在android:hint="This is my cool hint"上设置EditText。< / p>

<android.support.design.widget.TextInputLayout
    ....
    ....
    android:hint=" ">       <<----------

    <EditText
        ....
        ....
        android:hint="This is my cool hint"/>    <<----------

</android.support.design.widget.TextInputLayout>

这是有效的,因为TextInputLayout在使用EditText's提示之前会执行以下检查:

// If we do not have a valid hint, try and retrieve it from the EditText
if (TextUtils.isEmpty(mHint)) {
    setHint(mEditText.getHint());
    // Clear the EditText's hint as we will display it ourselves
    mEditText.setHint(null);
}

通过设置android:hint=" "if (TextUtils.isEmpty(mHint))评估为falseEditText保留其提示。

2 第二个选项是子类TextInputLayout并覆盖其addView(View child, int index, ViewGroup.LayoutParams params)方法:

public class CTextInputLayout extends TextInputLayout {

    public CTextInputLayout(Context context) {
        this(context, null);
    }

    public CTextInputLayout(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public CTextInputLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void addView(View child, int index, ViewGroup.LayoutParams params) {
        if (child instanceof EditText) {
            // cache the actual hint
            CharSequence hint = ((EditText)child).getHint();
            // remove the hint for now - we don't want TextInputLayout to see it
            ((EditText)child).setHint(null);
            // let `TextInputLayout` do its thing
            super.addView(child, index, params);
            // finally, set the hint back
            ((EditText)child).setHint(hint);
        } else {
            // Carry on adding the View...
            super.addView(child, index, params);
        }
    }
}

然后使用您的自定义CTextInoutLayout而不是设计支持库中的那个:

<your.package.name.CTextInputLayout
    ....
    .... >       <<----------

    <EditText
        ....
        ....
        android:hint="This is my cool hint"/>    <<----------

</your.package.name.CTextInputLayout>

3 第三,可能最直接的方式是进行以下调用:

// remove hint from `TextInputLayout`
((TextInputLayout)findViewById(R.id.textContainer)).setHint(null);
// set the hint back on the `EditText`
// The passed `String` could also be a string resource
((EditText)findViewById(R.id.myEditText)).setHint("This is my cool hinttt.");

答案 2 :(得分:2)

使用com.google.android.material您可以通过

隐藏
<com.google.android.material.textfield.TextInputLayout

               ....

               app:hintAnimationEnabled="false"
               app:hintEnabled="false"
               >

                <com.google.android.material.textfield.TextInputEditText
                    ........
                    android:hint="@string/label_hint"
                    />

</com.google.android.material.textfield.TextInputLayout>

答案 3 :(得分:1)

如果您使用过app:hintEnabled =“ false”,那么还可以在EditText中设置android:paddingTop =“ 8dp”,并且繁荣顶部提示空间消失了,这对我有用,希望对您也有用

答案 4 :(得分:0)

我已经尝试了所有答案,但现在都无法解决(特别是com.google.android.material:material:1.1.0-beta01)。即使我们在TextInputLayout中对EditText附加逻辑进行了更改,我们在字段顶部也有空白区域,该区域会遮盖一半的文本和提示。现在,我有一个解决问题的方法。最主要的是EditText中的填充,如material.io中的mentioned

<com.google.android.material.textfield.TextInputLayout
             . . .
    android:layout_height="wrap_content"
    app:hintEnabled="false"
    app:startIconDrawable="@drawable/ic_search_black"
    app:endIconMode="clear_text">

    <com.google.android.material.textfield.TextInputEditText
        android:id="@+id/et_search"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="12dp"
        android:hint="@string/showcase_search_hint_text"
        android:inputType="text" />

</com.google.android.material.textfield.TextInputLayout>

它使我们能够使用搜索图标和文本删除按钮来实现类似于“ SearchView”的视图,而无需使用自定义视图的任何丑陋的“魔术”

答案 5 :(得分:0)

myEditText.setOnFocusChangeListener { _, hasFocus ->
            if (hasFocus) textContainer.hint = null
            else myEditText.hint = getString(R.string.your_string)
        }

它使您的提示在textInputLayout中完全消失了,因为如果要使用app:hintEnabled =“ false”使其消失,那将使textInputLayout不酷:)

答案 6 :(得分:0)

 <com.google.android.material.textfield.TextInputLayout
            android:id="@+id/etemailLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint=" ">

            <EditText
                android:id="@+id/txtemail"
                style="@style/login_edittext"
                android:hint="Enter Your Email Address"
                android:inputType="textEmailAddress" />

        </com.google.android.material.textfield.TextInputLayout>

        <com.google.android.material.textfield.TextInputLayout
            android:id="@+id/etPasswordLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint=" "
            android:scrollbars="vertical"
            app:counterEnabled="true"
            app:passwordToggleEnabled="true">

            <EditText
                android:id="@+id/txtpassword"
                style="@style/login_edittext"
                android:fontFamily="@font/ubuntu"
                android:hint="Enter Password"
                android:inputType="textPassword"
                android:maxLength="8"
                android:scrollbars="vertical" />

        </com.google.android.material.textfield.TextInputLayout>

将样式应用于您的EditText,放在Styles.xml中的下面的代码中。.

<style name="login_edittext">
        <item name="android:layout_marginTop">15dp</item>
        <item name="android:background">@drawable/edittext_background</item>
        <item name="android:textColorHint">#FFFFFF</item>
        <item name="android:textColor">#FFFFFF</item>
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
    </style>

为实现背景效果,在drawable中创建edittext_background.xml。

<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle"
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <corners android:radius="7dp" />
    <solid android:color="#80ffffff" />
    <padding android:left="10dp" android:right="10dp"
        android:top="10dp" android:bottom="10dp" />
    <stroke android:width="2dp" android:color="#FFFFFF" />
</shape>

答案 7 :(得分:0)

如果有人遇到像我这样的问题:

Bug lable padding

标签使文本填充显示错误,然后执行以下操作:

<com.google.android.material.textfield.TextInputEditText
                    android:layout_width="match_parent"
                    android:paddingTop="@dimen/default_padding"
                    android:paddingBottom="@dimen/default_padding"
                    android:layout_height="wrap_content"
                    android:hint="@string/search_hint" />

TextInputEditText上添加填充顶部和填充底部可以解决问题

答案 8 :(得分:0)

@Gauthier的回答是正确的,但是如果您不只是想要浮动的提示,而是想要在文本编辑之前使用提示,那么除了对TextInputLayout禁用提示之外,还应该在EditText小部件中提供提示。

我想这回答了一些人在上述评论中提出的几个问题。

答案 9 :(得分:-1)

我认为这会对你有所帮助:

textContainer.setHintAnimationEnabled(false);

答案 10 :(得分:-1)

将设计库更新为v23,并在app:hintAnimationEnabled="false"

中添加TextInputLayout