Home | History | Annotate | Download | only in widget

Lines Matching refs:BufferType

434         int buffertype = 0;
483 buffertype = a.getInt(attr, buffertype);
736 BufferType bufferType = BufferType.EDITABLE;
833 switch (buffertype) {
835 bufferType = BufferType.NORMAL;
838 bufferType = BufferType.SPANNABLE;
841 bufferType = BufferType.EDITABLE;
855 if (bufferType == BufferType.NORMAL)
856 bufferType = BufferType.SPANNABLE;
917 setText(text, bufferType);
1026 * an argument of BufferType.SPANNABLE or BufferType.EDITABLE, you can cast
2258 * display buffer, upgrading it to BufferType.EDITABLE if it was
2267 * display buffer, upgrading it to BufferType.EDITABLE if it was
2272 setText(mText, BufferType.EDITABLE);
2591 public void setText(CharSequence text, BufferType type) {
2599 private void setText(CharSequence text, BufferType type,
2637 if (type == BufferType.EDITABLE || mInput != null ||
2644 } else if (type == BufferType.SPANNABLE || mMovement != null) {
2653 if (type == BufferType.EDITABLE || text instanceof Spannable) {
2661 type = (type == BufferType.EDITABLE) ? BufferType.EDITABLE : BufferType.SPANNABLE;
2834 * Like {@link #setText(CharSequence, android.widget.TextView.BufferType)},
2837 * @see #setText(CharSequence, android.widget.TextView.BufferType)
2839 public final void setTextKeepState(CharSequence text, BufferType type) {
2860 public final void setText(int resid, BufferType type) {
4761 setText(text.text, TextView.BufferType.EDITABLE);
6013 setText(mText, BufferType.SPANNABLE);
7065 public enum BufferType {
8360 private BufferType mBufferType = BufferType.NORMAL;