聚焦后更改TextInputLayout提示文本

时间:2018-05-19 02:25:23

标签: android android-fragments android-textinputlayout

在片段中,我想在用户触摸TextInputEditText后更改TextInputLayout提示文本。在它动画到浮动提示之前。

我可以更改提示没问题,但我希望用户首先触摸它,然后更改它。

我该怎么做?

谢谢

3 个答案:

答案 0 :(得分:0)

您可以使用OnFocusChangedListener并检索用户具有EditText焦点的事件。

k = zeros(1, size(a,2)-1);

答案 1 :(得分:0)

试试这种方式..

     editText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View view, boolean b) {
            editText.setHint("Please Enter Name"); // here set new hint
        }
    });

答案 2 :(得分:0)

更改提示文字颜色使用View.OnFocusChangeListener设置hintTextAppearance。尝试下面的配置。

 <style name="inactive" parent="Theme.AppCompat.Light">
    <item name="android:textColorPrimary">@android:color/darker_gray</item>
    <item name="android:textColor">@android:color/darker_gray</item>
</style>

<style name="active" parent="Theme.AppCompat.Light">
    <item name="android:textColorPrimary">@android:color/black</item>
    <item name="android:textColor">@android:color/black</item>
</style>

XMl

<android.support.design.widget.TextInputLayout
    android:id="@+id/tet"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/et"
    app:hintTextAppearance="@style/inactive"
    android:layout_margin="@dimen/activity_horizontal_margin"
    app:hintEnabled="true">
    <android.support.design.widget.TextInputEditText
        android:id="@+id/edit"
        android:layout_width="match_parent"
        android:textColor="@color/colorPrimary"
        android:layout_height="wrap_content"
        android:hint="Floating Hint" />

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

在焦点更改期间更改样式。

final TextInputLayout inputLayout=findViewById(R.id.tet);
    final TextInputEditText edit=findViewById(R.id.edit);
    edit.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            if(hasFocus)
                inputLayout.setHintTextAppearance(R.style.active);
            else
                inputLayout.setHintTextAppearance(R.style.inactive);
        }
    });

编辑: - 要更改提示文字,您只需更改焦点即可更改。

edit.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            if(hasFocus)
                edit.setHint("Enter name");
            else
                edit.setHint("Name");
        }
    });