Lines Matching refs:textView
47 import android.widget.TextView;
59 View.OnLongClickListener, DropTarget, FolderListener, TextView.OnEditorActionListener,
294 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
565 final BubbleTextView textView =
567 textView.setCompoundDrawables(null,
569 textView.setText(item.title);
570 textView.setTag(item);
571 textView.setTextColor(getResources().getColor(R.color.folder_items_text_color));
572 textView.setShadowsEnabled(false);
573 textView.setGlowColor(getResources().getColor(R.color.folder_items_glow_color));
575 textView.setOnClickListener(this);
576 textView.setOnLongClickListener(this);
592 textView.setOnKeyListener(new FolderKeyEventListener());
593 mContent.addViewToCellLayout(textView, insert ? 0 : -1, (int)item.id, lp, true);
594 return textView;