Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 让TextInputLayout仅在键入第一个字符后显示提示大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
以前,在支持库之前,要使用浮动标签,我使用的是来自Chris Banes的以下第三方库.

https://gist.github.com/chrisbanes/11247418

图书馆非常适合我.因为,只有在输入第一个字符后才显示浮动提示.

在打字之前,有焦点

android – 让TextInputLayout仅在键入第一个字符后显示提示

打字后,有焦点

android – 让TextInputLayout仅在键入第一个字符后显示提示

这是使用的代码.

<org.yccheok.portfolio.FloatLabelLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    app:floatLabelTextAppearance="@style/PortfolioFloatLabel">
    <EditText
        android:id="@+id/unit_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@String/new_buy_portfolio_unit"
        android:singleLine="true"
        android:inputType="numberdecimal"
        android:imeOptions="actionNext|flagNoExtractUi">
        <requestFocus />
    </EditText>
</org.yccheok.portfolio.FloatLabelLayout>

我决定迁移到Google Design Support Library以获得更好的支持.

<android.support.design.widget.TexTinputLayout
    android:id="@+id/usernameWrapper"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp">
    <EditText
        android:id="@+id/unit_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@String/new_buy_portfolio_unit"
        android:singleLine="true"
        android:inputType="numberdecimal"
        android:imeOptions="actionNext|flagNoExtractUi">
        <requestFocus />
    </EditText>
</android.support.design.widget.TexTinputLayout>

但是,在您关注EditText之后,即使在键入第一个字符之前,浮动提示也会立即显示.

android – 让TextInputLayout仅在键入第一个字符后显示提示

我想知道,有没有办法显示浮动提示,只有在EditText中至少有一个输入字符?

解决方法

您可能希望实现TextWatcher并手动将焦点设置为所需的文本长度.

大佬总结

以上是大佬教程为你收集整理的android – 让TextInputLayout仅在键入第一个字符后显示提示全部内容,希望文章能够帮你解决android – 让TextInputLayout仅在键入第一个字符后显示提示所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。