热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

android中TextView.setText(CharSequencetext,BufferTypetype)的了解

我们经常用TextView.setText(“”);的方法,但是TextView有一个另外一个俩个入参,之前不太知道其用法,现在记录一下效果图image.png核心代码***实现同

我们经常用TextView.setText(“”);的方法,但是TextView有一个另外一个俩个入参,之前不太知道其用法,现在记录一下

效果图

《android 中 TextView.setText(CharSequence text, BufferType type)的了解》 image.png

核心代码

/**
*实现同一个TextView设置不同的字体风格
* @param context
* @param textView
* @param firstValue
* @param secondValue
*/
public static void initText(Context context,TextView textView,String firstValue,String secondValue) {
SpannableString ss = new SpannableString(firstValue + secondValue);
ss.setSpan(new TextAppearanceSpan(context, R.style.style_gray_24_text), 0, firstValue.length(),
Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
ss.setSpan(new TextAppearanceSpan(context, R.style.style_black_2_24_text), firstValue.length(),
(firstValue + secondValue).length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(ss, TextView.BufferType.SPANNABLE);
}

setText(CharSequence text, BufferType type)的源码

/**
* Sets the text that this TextView is to display (see
* {@link #setText(CharSequence)}) and also sets whether it is stored
* in a styleable/spannable buffer and whether it is editable.
*
* @attr ref android.R.styleable#TextView_text
* @attr ref android.R.styleable#TextView_bufferType
*/
public void setText(CharSequence text, BufferType type) {
setText(text, type, true, 0);
if (mCharWrapper != null) {
mCharWrapper.mChars = null;
}
}

setText(CharSequence text, BufferType type)的翻译

/ * *
*设置此TextView将显示的文本(参见
* {@link # setText(CharSequence)},并设置是否存储
*在可编辑的/可扫描的缓冲区中,以及是否可编辑。
*
* @attr ref android.R.styleable # TextView_text
* @attr ref android.R.styleable # TextView_bufferType
* /

参考资料

1、http://blog.sina.com.cn/s/blog_5da93c8f01012pyp.html
2、http://blog.csdn.net/u012702547/article/details/49895157


推荐阅读
author-avatar
mobiledu2402851373
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有