本文整理汇总了Java中android.widget.TextView.BufferType方法的典型用法代码示例。如果您正苦于以下问题:Java TextView.BufferType方法的具体用法?Java TextView.BufferType怎么用?Java TextView.BufferType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.widget.TextView
的用法示例。
在下文中一共展示了TextView.BufferType方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setText
import android.widget.TextView; //导入方法依赖的package包/类
@Override
@CallSuper
public void setText(CharSequence rawText, TextView.BufferType type) {
final CharSequence text = rawText == null ? "" : rawText;
final SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(text);
if (mEmoticonProvider != null)
EmoticonUtils.replaceWithImages(getContext(), spannableStringBuilder, mEmoticonProvider, mEmoticonSize);
super.setText(spannableStringBuilder, type);
}
示例2: setText
import android.widget.TextView; //导入方法依赖的package包/类
@Override
public void setText(final CharSequence text, final TextView.BufferType type) {
final String textString = (text == null) ? "" : text.toString();
super.setText(textString, type);
// Any autocomplete text would have been overwritten, so reset our autocomplete states.
resetAutocompleteState();
}
示例3: setText
import android.widget.TextView; //导入方法依赖的package包/类
@Override
public void setText(CharSequence text, TextView.BufferType type) {
super.setText(text, type);
resetIfNeeded();
}
示例4: setText
import android.widget.TextView; //导入方法依赖的package包/类
/**
* Delegiert von android.widget.Button
*
* @param text siehe {@link Button}
* @param type siehe {@link Button}
*/
public void setText(CharSequence text, TextView.BufferType type) {
b.setText(text, type);
}
示例5: setTextKeepState
import android.widget.TextView; //导入方法依赖的package包/类
/**
* Delegiert von android.widget.Button
*
* @param text siehe {@link Button}
* @param type siehe {@link Button}
*/
public void setTextKeepState(CharSequence text, TextView.BufferType type) {
b.setTextKeepState(text, type);
}