HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 1 - 25 of 864) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsListFocus.java 21 import android.widget.TextView;
28 public class UserDictionaryToolsListFocus extends TextView {
30 private TextView mPairView = null;
55 public void setPairView(TextView pairView) {
  /frameworks/base/core/java/android/text/method/
MovementMethod.java 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)
    [all...]
ScrollingMovementMethod.java 21 import android.widget.TextView;
29 protected boolean left(TextView widget, Spannable buffer) {
34 protected boolean right(TextView widget, Spannable buffer) {
39 protected boolean up(TextView widget, Spannable buffer) {
44 protected boolean down(TextView widget, Spannable buffer) {
49 protected boolean pageUp(TextView widget, Spannable buffer) {
54 protected boolean pageDown(TextView widget, Spannable buffer) {
59 protected boolean top(TextView widget, Spannable buffer) {
64 protected boolean bottom(TextView widget, Spannable buffer) {
69 protected boolean lineStart(TextView widget, Spannable buffer)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
PhoneCallDetailsViews.java 23 import android.widget.TextView;
29 public final TextView nameView;
32 public final TextView callTypeAndDate;
33 public final TextView numberView;
35 private PhoneCallDetailsViews(TextView nameView, View callTypeView,
36 CallTypeIconsView callTypeIcons, TextView callTypeAndDate, TextView numberView) {
52 return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name),
55 (TextView) view.findViewById(R.id.call_count_and_date),
56 (TextView) view.findViewById(R.id.number))
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
ViewHelper.java 20 import android.widget.TextView;
33 TextView v = (TextView) mView.findViewById(R.id.error);
39 return ((TextView) mView.findViewById(viewId)).getText().toString();
44 TextView v = (TextView) mView.findViewById(viewId);
49 TextView v = (TextView) mView.findViewById(viewId);
  /cts/tests/src/android/app/cts/
ActivityManagerStubCrashActivity.java 21 import android.widget.TextView;
28 final TextView tv = new TextView(this);
ActivityManagerStubFooActivity.java 21 import android.widget.TextView;
28 final TextView tv = new TextView(this);
MockApplicationActivity.java 21 import android.widget.TextView;
28 TextView textView = new TextView(this);
29 textView.setText("Test");
30 setContentView(textView);
  /development/ndk/samples/hello-neon/src/com/example/neon/
HelloNeon.java 5 import android.widget.TextView;
14 /* Create a TextView and set its content.
18 TextView tv = new TextView(this);
  /development/ndk/samples/hello-jni/src/com/example/hellojni/
HelloJni.java 19 import android.widget.TextView;
31 /* Create a TextView and set its content.
35 TextView tv = new TextView(this);
  /development/ndk/samples/two-libs/src/com/example/twolibs/
TwoLibs.java 19 import android.widget.TextView;
30 TextView tv = new TextView(this);
  /development/pdk/pndk/samples/samplejni/src/com/example/jniexample/
JNIExample.java 5 import android.widget.TextView;
12 TextView tv = new TextView(this);
  /development/samples/SimpleJNI/src/com/example/android/simplejni/
SimpleJNI.java 21 import android.widget.TextView;
28 TextView tv = new TextView(this);
  /device/sample/apps/client/src/com/example/android/platform_library/client/
Client.java 23 import android.widget.TextView;
38 TextView tv = new TextView(this);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
TitleBar.java 24 import android.widget.TextView;
28 private TextView mTextView;
43 protected TextView getStyleableTextView() {
  /cts/tests/tests/widget/src/android/widget/cts/
TextView_SaveStateTest.java 27 import android.widget.TextView;
30 * Test {@link TextView.SavedState}.
32 @TestTargetClass(TextView.SavedState.class)
41 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source);
46 state = TextView.SavedState.CREATOR.createFromParcel(source);
58 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source);
78 TextView textView = new TextView(getInstrumentation().getTargetContext())
    [all...]
  /development/apps/Development/src/com/android/development/
ShowActivity.java 32 import android.widget.TextView;
39 private TextView mPackage;
41 private TextView mClass;
42 private TextView mLabel;
43 private TextView mLaunch;
44 private TextView mProcess;
45 private TextView mTaskAffinity;
46 private TextView mPermission;
47 private TextView mMultiprocess;
48 private TextView mClearOnBackground
    [all...]
  /development/samples/BrowserPlugin/src/com/android/sampleplugin/
AnimationSurface.java 6 import android.widget.TextView;
8 public class AnimationSurface extends TextView {
BackgroundSurface.java 5 import android.widget.TextView;
7 public class BackgroundSurface extends TextView {
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithOnItemSelectedAction.java 19 import android.widget.TextView;
41 ((TextView) getListView().getSelectedView()).getText().toString());
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 30 import android.widget.TextView;
47 // call setMovementMethod() on the TextView object.
49 TextView t2 = (TextView) findViewById(R.id.text2);
59 TextView t3 = (TextView) findViewById(R.id.text3);
80 TextView t4 = (TextView) findViewById(R.id.text4);
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnClient.java 25 import android.widget.TextView;
29 private TextView mServerAddress;
30 private TextView mServerPort;
31 private TextView mSharedSecret;
38 mServerAddress = (TextView) findViewById(R.id.address);
39 mServerPort = (TextView) findViewById(R.id.port);
40 mSharedSecret = (TextView) findViewById(R.id.secret);
  /frameworks/base/core/tests/coretests/src/android/text/util/
LinkifyTest.java 22 import android.widget.TextView;
31 TextView tv;
33 tv = new TextView(getContext());
42 TextView tv;
44 tv = new TextView(getContext());
54 TextView tv;
56 tv = new TextView(getContext());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportViewerActivity.java 22 import android.widget.TextView;
37 TextView reportText = (TextView) findViewById(R.id.report_text);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
StyledText.java 25 import android.widget.TextView;
47 TextView tv = (TextView)findViewById(R.id.text);

Completed in 551 milliseconds

1 2 3 4 5 6 7 8 91011>>