本文整理匯總了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);
}