gpt4 book ai didi

android - TextInputLayout 无法正常工作

转载 作者:行者123 更新时间:2023-11-29 20:32:01 26 4
gpt4 key购买 nike

我想在 android.support.design 中使用很棒的设计选项,但有一个问题。

当我在 TextInputLayout 中为我的 EditText 的 FocusChanged(android 中的 setOnFocusChangedListener)设置一个 Action 时,TextInputLayout 无法正常工作并且 float 文本总是停留在带重音的 edittext 顶部颜色。(TextInputLayout 不会自行更新)

有什么办法可以解决这个问题吗?!

我正在用 xamarin 制作我的应用程序,但如果你给我 java 代码,没问题

最佳答案

当您为 EditText 设置自定义 onFocusChangedListener 时,您覆盖了 onFocusChangedListener,但您仍然可以使用旧的 onFocusChangedListener。为此,您需要在覆盖之前获取它。

final View.OnFocusChangeListener oldNameFocusListener = textInputLayout.getEditText().getOnFocusChangeListener();
textInputLayout.getEditText().setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
oldNameFocusListener.onFocusChange(v, hasFocus);
}
});

旧设计库中存在该问题,新版本(v23.0.0)已修复该问题。

关于android - TextInputLayout 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31794016/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com