Searched refs:setText (Results 1 - 25 of 215) sorted by relevance

123456789

/development/apps/Development/src/com/android/development/
H A DShowActivity.java75 mPackage.setText(mActivityInfo.applicationInfo.packageName);
79 mClass.setText(mActivityInfo.name.substring(
82 mClass.setText(mActivityInfo.name);
85 mLabel.setText("\"" + (label != null ? label : "") + "\"");
88 mLaunch.setText(getText(R.string.launch_multiple));
91 mLaunch.setText(getText(R.string.launch_singleTop));
94 mLaunch.setText(getText(R.string.launch_singleTask));
97 mLaunch.setText(getText(R.string.launch_singleInstance));
100 mLaunch.setText(getText(R.string.launch_unknown));
102 mProcess.setText(mActivityInf
[all...]
H A DLogTextBox.java69 public void setText(CharSequence text, BufferType type) { method in class:LogTextBox
70 super.setText(text, BufferType.EDITABLE);
/development/samples/ApiDemos/src/com/example/android/apis/nfc/
H A DTechFilter.java41 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
43 mText.setText("Scan a tag");
49 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
H A DForegroundNdefPush.java50 mText.setText("Tap another Android phone with NFC to push a URL");
52 mText.setText("This phone is not NFC enabled.");
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DSearchQueryResults.java59 mDeliveredByText.setText("onCreate(), but no ACTION_SEARCH intent");
81 mDeliveredByText.setText("onNewIntent(), but no ACTION_SEARCH intent");
95 mQueryText.setText(queryString);
108 mAppDataText.setText("<no app data bundle>");
112 mAppDataText.setText((testStr == null) ? "<no app data>" : testStr);
116 mDeliveredByText.setText(entryPoint);
H A DIncomingMessageView.java47 ((TextView)findViewById(R.id.from)).setText(
49 ((TextView)findViewById(R.id.message)).setText(
H A DSaveRestoreState.java81 ((TextView)findViewById(R.id.msg)).setText(R.string.save_restore_msg);
95 ((EditText)findViewById(R.id.saved)).setText(text);
/development/samples/Obb/src/com/example/android/obbapp/
H A DObbMountActivity.java68 mStatus.setText(state.status);
69 mPath.setText(state.path);
82 mStatus.setText(String.valueOf(state));
84 mPath.setText(mSM.getMountedObbPath(mObbPath));
86 mPath.setText("");
101 mStatus.setText(R.string.attempting_mount);
103 mStatus.setText(R.string.failed_to_start_mount);
106 mStatus.setText(R.string.obb_already_mounted);
119 mStatus.setText(R.string.attempting_unmount);
121 mStatus.setText(
[all...]
/development/ndk/samples/hello-neon/src/com/example/neon/
H A DHelloNeon.java19 tv.setText( stringFromJNI() );
/development/samples/BrowserPlugin/src/com/android/sampleplugin/
H A DAnimationSurface.java17 this.setText("This is a full-screen plugin");
H A DBackgroundSurface.java14 this.setText("This is a java background plugin");
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DList13.java105 text.setText(mStrings[position]);
109 text.setText("Loading...");
123 mStatus.setText("Idle");
148 t.setText(mStrings[first + i]);
153 mStatus.setText("Idle");
157 mStatus.setText("Touch scroll");
161 mStatus.setText("Fling");
H A DGridLayout3.java67 c.setText("Email setup");
73 c.setText("You can configure email in a few simple steps:");
78 c.setText("Email address:");
89 c.setText("Password:");
100 c.setText("Manual setup");
105 c.setText("Next");
H A DHoverInterceptorView.java59 textView.setText(getResources().getString(
63 textView.setText(getResources().getString(
H A DScrollView2.java40 textView.setText("Text View " + i);
48 buttonView.setText("Button " + i);
H A DList4.java127 mTitle.setText(title);
132 mDialogue.setText(words);
141 mTitle.setText(title);
148 mDialogue.setText(words);
H A DSeekBar1.java49 mProgressText.setText(progress + " " +
54 mTrackingText.setText(getString(R.string.seekbar_tracking_on));
58 mTrackingText.setText(getString(R.string.seekbar_tracking_off));
/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DClipboardSample.java69 tv.setText(mStyledText);
73 tv.setText(mPlainText);
78 tv.setText(mHtmlText);
133 mMimeTypes.setText("");
141 mMimeTypes.setText("NULL");
167 mDataText.setText("(No data)");
170 mDataText.setText(item.getText());
173 mDataText.setText(item.getHtmlText());
176 mDataText.setText(item.getIntent().toUri(0));
179 mDataText.setText(ite
[all...]
H A DResourcesSample.java60 tv.setText(cs);
66 tv.setText(str);
81 tv.setText(cs);
/development/samples/ApiDemos/src/com/example/android/apis/text/
H A DLogTextBox.java61 public void setText(CharSequence text, BufferType type) { method in class:LogTextBox
62 super.setText(text, BufferType.EDITABLE);
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
H A DContentViewActivity.java37 tv.setText("Viewing content from ACTION_VIEW");
40 tv.setText(intent.getStringExtra(EXTRA_TEXT));
/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
H A DUtils.java47 viewMethods.setText(sbMethods.toString());
56 viewStatus.setText(sbStatus.toString());
/development/ndk/samples/hello-jni/src/com/example/hellojni/
H A DHelloJni.java36 tv.setText( stringFromJNI() );
/development/ndk/samples/two-libs/src/com/example/twolibs/
H A DTwoLibs.java41 tv.setText( "The sum of " + x + " and " + y + " is " + z );
/development/samples/SimpleJNI/src/com/example/android/simplejni/
H A DSimpleJNI.java30 tv.setText("2 + 3 = " + Integer.toString(sum));

Completed in 771 milliseconds

123456789