Home | History | Annotate | Download | only in launcher2

Lines Matching refs:textView

45 import android.widget.TextView;
58 View.OnLongClickListener, DropTarget, FolderListener, TextView.OnEditorActionListener,
223 mIconDrawable = ((TextView) v).getCompoundDrawables()[1];
272 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
522 final TextView textView =
523 (TextView) mInflater.inflate(R.layout.application, this, false);
524 textView.setCompoundDrawablesWithIntrinsicBounds(null,
526 textView.setText(item.title);
528 textView.setContentDescription(item.contentDescription);
530 textView.setTag(item);
532 textView.setOnClickListener(this);
533 textView.setOnLongClickListener(this);
549 textView.setOnKeyListener(new FolderKeyEventListener());
550 mContent.addViewToCellLayout(textView, insert ? 0 : -1, (int)item.id, lp, true);