HomeSort by relevance Sort by last modified time
    Searched refs:Presentation (Results 1 - 23 of 23) sorted by null

  /developers/samples/android/media/BasicMediaRouter/BasicMediaRouterSample/src/main/java/com/example/android/basicmediarouter/
SamplePresentation.java 19 import android.app.Presentation;
28 * A {@link android.app.Presentation} used to demonstrate interaction between primary and
33 * {@link android.app.Presentation#getDisplay()}) and exposes a facility to change its
37 public class SamplePresentation extends Presentation {
58 * Show the name of the display this presentation was embedded in.
  /development/samples/browseable/BasicMediaRouter/src/com.example.android.basicmediarouter/
SamplePresentation.java 19 import android.app.Presentation;
28 * A {@link android.app.Presentation} used to demonstrate interaction between primary and
33 * {@link android.app.Presentation#getDisplay()}) and exposes a facility to change its
37 public class SamplePresentation extends Presentation {
58 * Show the name of the display this presentation was embedded in.
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
DemoPresentation.java 17 package com.android.accessorydisplay.source.presentation;
22 import android.app.Presentation;
33 * The presentation to show on the accessory display.
36 * the main activity is showing so we must be careful to use the presentation's
40 public final class DemoPresentation extends Presentation {
57 // Get the resources for the context of the presentation.
58 // Notice that we are getting the resources from the context of the presentation.
  /frameworks/base/services/input/
PointerController.h 84 enum Presentation {
92 virtual void setPresentation(Presentation presentation) = 0;
168 virtual void setPresentation(Presentation presentation);
224 Presentation presentation; member in struct:android::PointerController::Locked
PointerController.cpp 67 mLocked.presentation = PRESENTATION_POINTER;
228 void PointerController::setPresentation(Presentation presentation) {
231 if (mLocked.presentation != presentation) {
232 mLocked.presentation = presentation;
235 if (presentation != PRESENTATION_SPOT) {
497 mLocked.pointerSprite->setIcon(mLocked.presentation == PRESENTATION_POINTER
  /frameworks/base/core/java/android/app/
Presentation.java 36 * A presentation is a special kind of dialog whose purpose is to present
37 * content on a secondary display. A {@link Presentation} is associated with
41 * Notably, the {@link Context} of a presentation is different from the context
43 * of a presentation and load other resources using the presentation's own context
47 * A presentation is automatically canceled (see {@link Dialog#cancel()}) when
49 * care of pausing and resuming whatever content is playing within the presentation
53 * <h3>Choosing a presentation display</h3>
55 * Before showing a {@link Presentation} it's important to choose the {@link Display}
56 * on which it will appear. Choosing a presentation display is sometimes difficul
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardDisplayManager.java 18 import android.app.Presentation;
34 Presentation mPresentation;
125 private final static class KeyguardPresentation extends Presentation {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationWithMediaRouterActivity.java 24 import android.app.Presentation;
42 * <h3>Presentation Activity</h3>
46 * on a secondary display using a {@link Presentation}.
49 * a presentation display is available and to allow the user to control the
50 * media routes using a menu item. When a presentation display is available,
52 * {@link Presentation} on the preferred presentation display. When a presentation
60 * checkbox to show a presentation on that display.
110 // Update the presentation based on the currently selected route
    [all...]
PresentationActivity.java 25 import android.app.Presentation;
53 * <h3>Presentation Activity</h3>
57 * on a secondary display using a {@link Presentation}.
60 * When the user selects a display, the activity opens a {@link Presentation}
61 * on that display. We show a different photograph in each presentation
69 * checkbox to show a presentation on that display.
81 private static final String PRESENTATION_KEY = "presentation";
83 // The content that we want to show on the presentation.
97 // List of presentation contents indexed by displayId.
98 // This state persists so that we can restore the old presentation
177 DemoPresentation presentation = mActivePresentations.valueAt(i); local
204 DemoPresentation presentation = new DemoPresentation(this, display, contents); local
215 DemoPresentation presentation = mActivePresentations.get(displayId); local
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
VirtualDisplayTest.java 19 import android.app.Presentation;
121 // Show a private presentation on the display.
122 assertDisplayCanShowPresentation("private presentation window",
132 * Ensures that an application can create a private presentation virtual display and show
145 // Show a private presentation on the display.
146 assertDisplayCanShowPresentation("private presentation window",
172 assertNotNull("display must be registered as a presentation display",
176 assertNull("display must not be registered as a presentation display",
194 final TestPresentation[] presentation = new TestPresentation[1]; local
196 // Show the presentation
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeVirtualDisplayTest.java 19 import android.app.Presentation;
52 * just throwing a Presentation and a View at it. Further, it's possible that frames
482 final TestPresentation[] presentation = new TestPresentation[1]; local
487 // Want to create presentation on UI thread so it finds the right Looper
489 presentation[0] = new TestPresentation(getContext(), mDisplay, color);
491 presentation[0].show();
495 // Give the presentation an opportunity to render. We don't have a way to
500 if (presentation[0] != null) {
504 presentation[0].dismiss();
535 * Presentation we can show on a virtual display. The view is set to a single color value
    [all...]
EncodeVirtualDisplayWithCompositionTest.java 20 import android.app.Presentation;
775 private class TestPresentation extends Presentation {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/hardware/display/
VirtualDisplayTest.java 19 import android.app.Presentation;
121 // Show a private presentation on the display.
122 assertDisplayCanShowPresentation("private presentation window",
132 * Ensures that an application can create a private presentation virtual display and show
145 // Show a private presentation on the display.
146 assertDisplayCanShowPresentation("private presentation window",
190 // Presentation case.
191 // Show a normal presentation on the display.
192 assertDisplayCanShowPresentation("presentation window",
196 // Presentation case with secure window (but display is not secure)
288 final TestPresentation[] presentation = new TestPresentation[1]; local
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
LocalPlayer.java 20 import android.app.Presentation;
407 // dismiss presentation display
409 Log.i(TAG, "Dismissing presentation because the activity is no longer visible.");
425 // Get the current route and its presentation display.
428 // Dismiss the current presentation if the display has changed.
430 Log.i(TAG, "Dismissing presentation because the current route no longer "
431 + "has a presentation display.");
436 // Show a new presentation if needed.
438 Log.i(TAG, "Showing presentation on display: " + presentationDisplay);
444 Log.w(TAG, "Couldn't show presentation! Display was removed in
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 22 import android.app.Presentation;
    [all...]
  /frameworks/base/core/java/android/view/
WindowManager.java 19 import android.app.Presentation;
42 * {@link Presentation}. The presentation will automatically obtain a
66 * be found. See {@link android.app.Presentation} for more information on secondary displays.
540 * Window type: Window for Presentation on top of private
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /frameworks/base/services/input/tests/
InputReader_test.cpp 113 virtual void setPresentation(Presentation presentation) {
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 2562 milliseconds