/packages/apps/CertInstaller/src/com/android/certinstaller/ |
ViewHelper.java | 49 void setText(int viewId, int textId) { 51 if (v != null) v.setText(textId);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterPointRepresentation.java | 25 public FilterPointRepresentation(String type, int textid, int editorID) { 29 setTextId(textid);
|
FilterRepresentation.java | 176 public void setTextId(int textId) { 177 mTextId = textId;
|
BaseFiltersManager.java | 310 int[] textId = { 331 for (int i = 0; i < textId.length; i++) { 333 geometry.setTextId(textId[i]);
|
/cts/tests/tests/holo/src/android/holo/cts/ |
HoloTestUtilitiesActivity.java | 66 private Task(int textId, int taskId) { 67 mTextId = textId;
|
/packages/apps/Contacts/tests/src/com/android/contacts/detail/ |
ContactDetailDisplayUtilsTest.java | 100 private void assertGone(View parent, int textId) { 101 View view = parent.findViewById(textId);
|
/development/apps/WidgetPreview/src/com/android/widgetpreview/ |
WidgetPreviewActivity.java | 290 int textId = R.string.saving_preview; 292 Toast preToast = Toast.makeText(getBaseContext(), textId, Toast.LENGTH_SHORT); 297 textId = R.string.preview_saved; 299 textId = R.string.preview_save_error; 302 Toast postToast = Toast.makeText(getBaseContext(), textId, Toast.LENGTH_SHORT);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
StatusBarNotifications.java | 193 private void setMood(int moodId, int textId, boolean showTicker) { 195 CharSequence text = getText(textId); 198 String tickerText = showTicker ? getString(textId) : null; 213 private void setMoodView(int moodId, int textId) { 224 CharSequence text = getText(textId);
|
NotifyingService.java | 93 private void showNotification(int moodId, int textId) { 95 CharSequence text = getText(textId);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
MessageTestActivity.java | 244 private void setEmptyViewText(int textId) { 245 mEmptyReceivedView.setText(textId); 246 mEmptySentView.setText(textId);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowDialog.java | 236 public void clickOnText(int textId) { 240 String text = getContext().getResources().getString(textId);
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/ |
TrackerActivity.java | 136 private void showConfirm(int textId, final Runnable onConfirmAction) { 139 dialogBuilder.setMessage(textId);
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
other_sessions.js | 298 * @param {string} textId The ID for the localized string that acts as 301 appendMenuItem_: function(textId) { 305 button.textContent = loadTimeData.getString(textId);
|
apps_page.js | 92 * @param {?string} textId If non-null, the ID for the localized string 95 appendMenuItem_: function(textId) { 99 if (textId) 100 button.textContent = loadTimeData.getString(textId);
|
/developers/build/prebuilts/gradle/BasicNetworking/BasicNetworkingSample/src/main/java/com/example/android/basicnetworking/ |
SimpleTextFragment.java | 82 * Currently the method only looks for text or a textID, nothing else.
|
/developers/build/prebuilts/gradle/NetworkConnect/NetworkConnectSample/src/main/java/com/example/android/networkconnect/ |
SimpleTextFragment.java | 81 * Currently the method only looks for text or a textID, nothing else.
|
/developers/samples/android/connectivity/network/BasicNetworking/BasicNetworkingSample/src/main/java/com/example/android/basicnetworking/ |
SimpleTextFragment.java | 82 * Currently the method only looks for text or a textID, nothing else.
|
/developers/samples/android/connectivity/network/NetworkConnect/NetworkConnectSample/src/main/java/com/example/android/networkconnect/ |
SimpleTextFragment.java | 81 * Currently the method only looks for text or a textID, nothing else.
|
/development/samples/browseable/BasicNetworking/src/com.example.android.basicnetworking/ |
SimpleTextFragment.java | 82 * Currently the method only looks for text or a textID, nothing else.
|
/development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/ |
SimpleTextFragment.java | 81 * Currently the method only looks for text or a textID, nothing else.
|
/frameworks/base/core/java/android/app/ |
AlertDialog.java | 482 * @param textId The resource id of the text to display in the positive button 487 public Builder setPositiveButton(int textId, final OnClickListener listener) { 488 P.mPositiveButtonText = P.mContext.getText(textId); 508 * @param textId The resource id of the text to display in the negative button 513 public Builder setNegativeButton(int textId, final OnClickListener listener) { 514 P.mNegativeButtonText = P.mContext.getText(textId); 534 * @param textId The resource id of the text to display in the neutral button 539 public Builder setNeutralButton(int textId, final OnClickListener listener) { 540 P.mNeutralButtonText = P.mContext.getText(textId); [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningServiceDetails.java | 350 int textid = 0; local 358 textid = R.string.process_provider_in_use_description; 370 textid = R.string.process_service_in_use_description; 382 if (textid != 0 && label != null) { 383 description.setText(getActivity().getString(textid, label));
|
/development/apps/Development/src/com/android/development/ |
PermissionDetails.java | 255 private void setTextView(int viewId, int textId) { 257 view.setText(textId);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
EditorGrad.java | 192 public ParamAdapter(int seekId, int textId, LinearLayout layout, int mode) { 194 mTextView = (TextView) layout.findViewById(textId);
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
BluetoothSettings.java | 176 int textId = isDiscovering ? R.string.bluetooth_searching_for_devices : 178 menu.add(Menu.NONE, MENU_ID_SCAN, 0, textId)
|