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

1 2 3 4 5 6 7 8 910

  /sdk/layoutopt/libs/uix/src/resources/rules/
MergeRootFrameLayout.rule 10 // - The node does not have a background nor a foreground
14 !node.'@android:foreground' && ((node.isWidthFillParent() &&
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java 122 final BitmapDrawable foreground local
124 compareScaledPixels(48, foreground.getIntrinsicHeight());
125 compareScaledPixels(48, foreground.getIntrinsicWidth());
126 assertTrue(mFrameLayout.getHeight() > foreground.getIntrinsicHeight());
127 assertTrue(mFrameLayout.getWidth() > foreground.getIntrinsicWidth());
132 mFrameLayout.setForeground(foreground);
136 assertSame(foreground, mFrameLayout.getForeground());
138 assertTrue(foreground.isVisible());
139 Rect rect = foreground.getBounds();
140 // foreground has been stretche
176 final Drawable foreground = mActivity.getResources().getDrawable(R.drawable.size_48x48); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IGraphics.java 46 * Sets the foreground color. The foreground color is used
97 * Draws a line between 2 points, using the current foreground
102 * Draws a line between 2 points, using the current foreground
109 * foreground color and alpha.
114 * foreground color and alpha.
119 * foreground color and alpha.
140 * Draws the given string, using the current foreground color.
150 * Draws the given string, using the current foreground color.
  /external/webkit/WebCore/manual-tests/
drag-out-of-background-window.html 17 This window will not come to the foreground when you click, and you will be able to
22 As soon as you click in the selected text, this window will come to the foreground
  /external/webkit/WebCore/platform/
PopupMenuStyle.h 38 PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, Length textIndent, TextDirection textDirection)
39 : m_foregroundColor(foreground)
  /frameworks/base/docs/html/guide/topics/processes/
process-lifecycle.jd 41 <li>A <strong>foreground process</strong> is one that is required for
43 cause its containing process to be considered foreground in different
44 ways. A process is considered to be in the foreground if any of the
67 that is visible to the user on-screen but not in the foreground (its
69 occur, for example, if the foreground Activity is displayed as a dialog
72 required to keep all foreground processes running.
81 running unless there is not enough memory to retain all foreground and visible process.
  /cts/tests/tests/app/src/android/app/cts/
ActivityManager_RunningServiceInfoTest.java 41 mRunningServiceInfo.foreground = true;
83 assertTrue(values.foreground);
108 assertTrue(values.foreground);
  /cts/tests/tests/graphics/src/android/graphics/cts/
DashPathEffectTest.java 46 private static final int FOREGROUND = Color.GREEN;
67 paint.setColor(FOREGROUND);
79 assertEquals(FOREGROUND, bitmap.getPixel(x, y));
  /external/kernel-headers/original/linux/
tiocl.h 33 #define TIOCL_GETFGCONSOLE 12 /* get foreground vt */
vt_buffer.h 10 * the foreground console directly in video memory.
console_struct.h 36 unsigned char vc_color; /* Foreground & background */
37 unsigned char vc_s_color; /* Saved foreground & background */
  /external/webkit/WebCore/rendering/
EllipsisBox.cpp 48 Color foreground = paintInfo.forceBlackText ? Color::black : renderer()->selectionForegroundColor(); local
49 if (foreground.isValid() && foreground != textColor)
50 context->setFillColor(foreground, style->colorSpace());
  /frameworks/base/core/res/res/layout/
screen_custom_title.xml 34 android:foreground="?android:attr/windowContentOverlay" />
screen_simple.xml 29 android:foreground="?android:attr/windowContentOverlay" /
dialog_custom_title.xml 34 android:foreground="?android:attr/windowContentOverlay">
dialog_title.xml 39 android:foreground="?android:attr/windowContentOverlay">
screen_title.xml 42 android:foreground="?android:attr/windowContentOverlay" />
  /packages/apps/Gallery/res/layout/
photo_frame.xml 31 android:foreground="@drawable/photo_inner">
  /packages/apps/Gallery3D/res/layout/
photo_frame.xml 31 android:foreground="@drawable/photo_inner">
  /packages/apps/Gallery3D/src/com/cooliris/media/
DataSource.java 39 // Called when the user explicitly requests a refresh, or when the application is brought to the foreground.
  /packages/apps/Phone/src/com/android/phone/
InCallControlState.java 106 // This item is visible only if the foreground call is a
139 // "Mute": only enabled when the foreground call is ACTIVE.
166 // *no* foreground call. (If there *is* a foreground call,
  /frameworks/base/core/java/android/widget/
FrameLayout.java 112 * Describes how the foreground is positioned. Defaults to FILL.
227 * Returns the drawable used as the foreground of this FrameLayout. The
228 * foreground drawable, if non-null, is always drawn on top of the children.
230 * @return A Drawable or null if no foreground was set.
264 // Check against our foreground's minimum height and width
360 final Drawable foreground = mForeground; local
376 Gravity.apply(mForegroundGravity, foreground.getIntrinsicWidth(),
377 foreground.getIntrinsicHeight(), selfBounds, overlayBounds);
378 foreground.setBounds(overlayBounds);
381 foreground.draw(canvas)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallManager.java 94 // list of supported foreground calls
350 * @return the phone associated with the foreground call
383 // Enable IN_CALL mode while foreground call is in DIALING,
590 * Hangup foreground call and resume the specific background call
592 * Note: this is noop if there is no foreground call or the heldCall is null
594 * @param heldCall to become foreground
669 throw(new CallStateException("Can't conference foreground and selected background call"));
    [all...]
  /frameworks/base/services/camera/libcameraservice/
FakeCamera.h 30 * bouncing gray square in the foreground.
  /libcore/luni/src/main/java/java/awt/font/
TextAttribute.java 92 /** The FOREGROUND text attribute key. */
93 public static final TextAttribute FOREGROUND = new TextAttribute("foreground");
184 * The Constant SWAP_COLORS_ON indicates a swap of foreground

Completed in 9272 milliseconds

1 2 3 4 5 6 7 8 910