概述
问题
TextView、如果先设置了setText(),setHint()就会没作用,先setHint()、setText() 就行;
分析
1、setHint()源码:
/**
* Sets the text to be displayed when the text of the TextView is empty,
* from a resource.
*
* @attr ref android.R.styleable#TextView_hint
*/
@android.view.RemotableViewMethod
public final void setHint(@StringRes int resid) {
setHint(getContext().getResources().getText(resid));
}
很显然从注释就能知道:TextView 的内容为空的时候就能设置setHint();
所以:
textView.setText("");
textView.setHint(“问题解决了!”);
总结
Android EditText、Button 都有这个方法也都这样解决吧!
转载地址:https://blog.csdn.net/ctianju/article/details/117902634
最后
以上就是欢喜路灯为你收集整理的Android TextView的setHint不生效的全部内容,希望文章能够帮你解决Android TextView的setHint不生效所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复