gpt4 book ai didi

java - Android EditText 提示使用与 EditText 相同的字体

转载 作者:太空狗 更新时间:2023-10-29 14:02:07 24 4
gpt4 key购买 nike

我已经为 EditText 定义了一种字体,现在 EditText 提示也显示了该字体,但我需要为 EditText 提示使用不同的字体,有没有办法实现这一点?

最佳答案

Android EditText hint uses the same font that the EditText has

EditText 使用 textview_hint 布局来显示 ErrorPopup 弹出消息。因此尝试为 Hint 设置不同的字体:

 LayoutInflater inflater = LayoutInflater.from(<Pass context here>);
TextView hintTextView = (TextView) inflater.inflate(
com.android.internal.R.layout.textview_hint, null);
hintTextView.setTypeface(< Typeface Object>);

编辑:因为 EdiText 在内部使用 ErrorPopup 显示 Hint 弹出窗口。

有关更多帮助,请参阅以下链接:

http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/5.1.1_r1/android/widget/Editor.java#Editor.invalidateTextDisplayList%28%29

关于java - Android EditText 提示使用与 EditText 相同的字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34805259/

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