當前位置: 首頁>>代碼示例>>Java>>正文


Java TextView.BufferType方法代碼示例

本文整理匯總了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);
}
 
開發者ID:kevalpatel2106,項目名稱:EmoticonGIFKeyboard,代碼行數:10,代碼來源:EmoticonTextView.java

示例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();
}
 
開發者ID:mozilla-mobile,項目名稱:firefox-tv,代碼行數:10,代碼來源:InlineAutocompleteEditText.java

示例3: setText

import android.widget.TextView; //導入方法依賴的package包/類
@Override
public void setText(CharSequence text, TextView.BufferType type) {
    super.setText(text, type);
    resetIfNeeded();
}
 
開發者ID:goutham106,項目名稱:GmArchMvvm,代碼行數:6,代碼來源:GmSecretTextView.java

示例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);
}
 
開發者ID:LCA311,項目名稱:leoapp-sources,代碼行數:10,代碼來源:InfoButton.java

示例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);
}
 
開發者ID:LCA311,項目名稱:leoapp-sources,代碼行數:10,代碼來源:InfoButton.java


注:本文中的android.widget.TextView.BufferType方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。