gpt4 book ai didi

android - 如何从类中调用 TextWatcher

转载 作者:行者123 更新时间:2023-11-30 01:03:33 55 4
gpt4 key购买 nike

我在 EditText 字段上有提示文本和普通文本,我指定了不同的 Font-SizeFont-ColorFont-Name 两者。我已经把它放在我的 ActivityClass 中,它工作正常。我有大约 10 个编辑文本 字段,所以如果我为所有字段添加 Textwatcher 并一次又一次地做同样的事情,那将是非常奇怪的。所以我决定创建一个类并将 TextWatcher 放在那里。

但是添加之后,它就停止工作了。它不会改变文本颜色,请指导我如何通过 class

实现此目的
public class FormTextCosmetics {

public void changeHintText(final EditText editText){

hintFontColor= context.getResources().getColor(R.color.white);
normalFontColor= context.getResources().getColor(R.color.grayCheckoutFont);


editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}

@Override
public void afterTextChanged(Editable s) {
if(s.length() > 0){
editText.setTextSize(normalTextSize);
editText.setTypeface(Typeface.create(normalFontFamily, Typeface.NORMAL));
editText.setTextColor(normalFontColor);
editText.setAlpha(1);
}else{
editText.setTextSize(hintFontSize);
editText.setTypeface(Typeface.create(hintFontFamily, Typeface.NORMAL));
editText.setTextColor(hintFontColor);
editText.setAlpha(0.52f);
}
}
});

}

主要 Activity 类

FormTextCosmetics formTextCosmetics= new FormTextCosmetics(this);
formTextCosmetics.changeHintText(etName);

我也尝试将上面的代码放在另一个 Textwatcher 中,但它也没有影响文本。

最佳答案

您的 editText 没有“意识到”它应该在其中发生变化时调用您的类。
你应该这样做——你的类应该实现 TextWatcher:

public class FormTextCosmetics implements TextWatcher {
//Your code goes here
}

然后你像这样使用它 -

etName.addTextChangedListener(new FormTextCosmetics());

现在 editText 会在文本中发生任何事情时调用您的类。

关于android - 如何从类中调用 TextWatcher,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39143147/

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