Home | History | Annotate | Download | only in method

Lines Matching refs:TextView

19 import android.widget.TextView;
25 * Provides cursor positioning, scrolling and text selection functionality in a {@link TextView}.
27 * The {@link TextView} delegates handling of key events, trackball motions and touches to
29 * selects an appropriate movement method based on the content of the {@link TextView}.
36 public void initialize(TextView widget, Spannable text);
37 public boolean onKeyDown(TextView widget, Spannable text, int keyCode, KeyEvent event);
38 public boolean onKeyUp(TextView widget, Spannable text, int keyCode, KeyEvent event);
45 public boolean onKeyOther(TextView view, Spannable text, KeyEvent event);
47 public void onTakeFocus(TextView widget, Spannable text, int direction);
48 public boolean onTrackballEvent(TextView widget, Spannable text, MotionEvent event);
49 public boolean onTouchEvent(TextView widget, Spannable text, MotionEvent event);
50 public boolean onGenericMotionEvent(TextView widget, Spannable text, MotionEvent event);