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

1 2 3 4 5 6 7 8 91011

  /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/nfc/
index.jd 17 <li><a href="#foreground-dispatch">Using the foreground dispatch system</a></li>
82 tag dispatch to your activity, and provides methods to register for foreground
83 tag dispatch and foreground NDEF push. Foreground NDEF push is the only
260 that your Activity should handle: the Intent dispatch system and the foreground Activity dispatch
268 <p>The foreground dispatch system allows an Activity application to override the intent dispatch
270 running in the foreground of the device. When an NFC tag is scanned and matches the intent and
271 data type that the foreground dispatch Activity defines, the intent is immediately sent to the
273 intent, the foreground dispatch system falls back to the intent dispatch system.</p
    [all...]
  /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));
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
ForegroundDispatch.java 33 * An example of how to use the NFC foreground dispatch APIs. This will intercept any MIME data
83 Log.i("Foreground dispatch", "Discovered tag with intent: " + intent);
  /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">
  /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.
168 // *no* foreground call. (If there *is* a foreground call,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
tiocl.h 33 #define TIOCL_GETFGCONSOLE 12 /* get foreground vt */
  /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/core/java/android/nfc/
NfcAdapter.java 446 * Enable foreground dispatch to the given Activity.
448 * <p>This will give give priority to the foreground activity when
461 * that acts a wild card and will cause the foreground activity to receive all tags via the
465 * foreground (resumed). Also, activities must call {@link #disableForegroundDispatch} before
466 * the completion of their {@link Activity#onPause} callback to disable foreground dispatch
476 * @throws IllegalStateException if the Activity is not currently in the foreground
502 * Disable foreground dispatch to the given activity.
541 * Enable NDEF message push over P2P while this Activity is in the foreground.
549 * <p class="note"><em>NOTE:</em> While foreground NDEF push is active standard tag dispatch is disabled.
550 * Only the foreground activity may receive tag discovered dispatches vi
    [all...]

Completed in 1113 milliseconds

1 2 3 4 5 6 7 8 91011