android.widget.TextView#setTextKeepState ( )源码实例Demo

下面列出了android.widget.TextView#setTextKeepState ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: Klyph   文件: EmojiUtil.java
public static void convertTextToEmoji(TextView textView, boolean addLinks)
{
	textView.setTextKeepState(getSpannableForText(textView.getContext(), textView.getText().toString(), addLinks), BufferType.SPANNABLE);
}
 
源代码2 项目: KlyphMessenger   文件: EmojiUtil.java
public static void convertTextToEmoji(TextView textView, boolean addLinks)
{
	textView.setTextKeepState(getSpannableForText(textView.getContext(), textView.getText().toString(), addLinks), BufferType.SPANNABLE);
}
 
 方法所在类
 同类方法