HomeSort by relevance Sort by last modified time
    Searched full:setforeground (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/junit/src/junit/swingui/
ProgressBar.java 15 setForeground(getStatusColor());
44 setForeground(getStatusColor());
StatusLine.java 30 setForeground(Color.black);
36 setForeground(Color.red);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfect.java 238 e.gc.setForeground(mPaddingColor);
244 e.gc.setForeground(mMarginColor);
250 e.gc.setForeground(mBorderColor);
255 e.gc.setForeground(mPaddingColor);
260 e.gc.setForeground(mMarginColor);
265 e.gc.setForeground(mBorderColor);
271 e.gc.setForeground(mCrosshairColor);
LayoutViewer.java 191 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
193 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_BLACK));
217 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_DARK_RED));
230 e.gc.setForeground(Display.getDefault().getSystemColor(
233 e.gc.setForeground(Display.getDefault().getSystemColor(
240 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_RED));
CaptureDisplay.java 146 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_BLUE));
152 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_GREEN));
158 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_RED));
PixelPerfectPixelPanel.java 82 e.gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
116 .setForeground(Display.getDefault().getSystemColor(
PixelPerfectLoupe.java 253 gc.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
270 e.gc.setForeground(mCrosshairColor);
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java 107 method = "setForeground",
132 mFrameLayout.setForeground(foreground);
154 mFrameLayout.setForeground(newForeground);
179 mFrameLayout.setForeground(foreground);
366 myFrameLayout.setForeground(drawable);
  /external/proguard/src/proguard/gui/
ClassPathPanel.java 398 jarNameLabel.setForeground(list.getSelectionForeground());
399 filterLabel.setForeground(list.getSelectionForeground());
404 jarNameLabel.setForeground(list.getForeground());
405 filterLabel.setForeground(list.getForeground());
412 jarNameLabel.setForeground(Color.red);
ClassSpecificationsPanel.java 218 label.setForeground(list.getSelectionForeground());
223 label.setForeground(list.getForeground());
MemberSpecificationsPanel.java 251 label.setForeground(list.getSelectionForeground());
256 label.setForeground(list.getForeground());
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 381 label.setForeground(Color.WHITE);
387 label.setForeground(Color.WHITE);
391 label.setForeground(Color.WHITE);
397 label.setForeground(Color.WHITE);
401 label.setForeground(Color.WHITE);
407 label.setForeground(Color.WHITE);
411 label.setForeground(Color.WHITE);
417 label.setForeground(Color.WHITE);
421 label.setForeground(Color.WHITE);
427 label.setForeground(Color.WHITE)
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 160 label.setForeground(Color.WHITE);
168 label.setForeground(Color.WHITE);
188 maxZoomLabel.setForeground(Color.WHITE);
196 label.setForeground(Color.WHITE);
204 label.setForeground(Color.WHITE);
224 maxZoomLabel.setForeground(Color.WHITE);
233 showLock.setForeground(Color.WHITE);
247 showPatches.setForeground(Color.WHITE);
260 showPadding.setForeground(Color.WHITE);
276 label.setForeground(Color.WHITE)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 128 public void setForeground(IColor color) {
129 mDrawn.add("setForeground(" + color + ")");
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogFilter.java 545 item.setForeground(mColors.infoColor);
547 item.setForeground(mColors.debugColor);
549 item.setForeground(mColors.errorColor);
551 item.setForeground(mColors.warningColor);
553 item.setForeground(mColors.verboseColor);
LogCatMessageLabelProvider.java 86 cell.setForeground(getForegroundColor(m));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
EmptyViewsOverlay.java 75 gc.setForeground(mBorderColor);
OutlineOverlay.java 78 gc.setForeground(mOutlineColor);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ForegroundService.java 131 mSetForeground = getClass().getMethod("setForeground",
135 "OS doesn't have Service.startForeground OR Service.setForeground!");
  /frameworks/base/docs/html/resources/articles/
service-api-changes-starting-with.jd 26 <li>Service.setForeground() is now deprecated and in 2.0 does nothing.</li>
33 <h3>Redesigning Service.setForeground()</h3>
34 <p>During the final stabilization period of Android 1.6 we started to see more issues due to an increasing number of applications using the Service.setForeground() API when they shouldn't be. This is an API that we haven't advertised much because it should not be used by most applications and can be very hard on the system: it asks that the service's process be treated as in the foreground, essentially making it unkillable and thus more difficult for the system to recover from low memory situations.</p>
35 <p>At that point in 1.6 it was too late to make any significant changes to the behavior here, but in 2.0 we have done so: Service.setForeground() now does nothing. The API was always intended to be something a service would do in conjunction with putting up an ongoing notification for the user; by saying you are in the foreground, the user should be "aware" that the service is running in some way and know how to stop it. Thus in place of the old API Andriod 2.0 introduces two new APIs that require a notification go along with being in the foreground:</p>
90 setForeground(true);
117 setForeground(false);
  /external/junit/src/junit/awtui/
TestRunner.java 283 fStatusLine.setForeground(Color.red);
544 fStatusLine.setForeground(Color.black);
554 fStatusLine.setForeground(Color.red);
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java 622 gcImage.setForeground(mColorGray);
747 gcImage.setForeground(mColorDarkGray);
769 gc.setForeground(mColorGray);
789 gc.setForeground(mColorForeground);
835 gc.setForeground(mColorForeground);
847 gc.setForeground(mColorGray);
870 gc.setForeground(mColorForeground);
880 gc.setForeground(mColorGray);
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.app.Service.html 126 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Service.html#setForeground(boolean)" target="_top"><code>setForeground</code></A>(<code>boolean</code>) </nobr>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 250 gc.setForeground(display.getSystemColor(SWT.COLOR_BLACK));
271 gc.setForeground(display.getSystemColor(mColor));
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.app.Service.html 87 <nobr><code>void</code>&nbsp;setForeground(<code>boolean</code>)</nobr>

Completed in 516 milliseconds

1 2 3