Home
last modified time | relevance | path

Searched refs:screenshot (Results 1 – 25 of 59) sorted by relevance

123

/frameworks/base/cmds/screencap/
Dscreencap.cpp171 ScreenshotClient screenshot; in main() local
189 status_t result = screenshot.update(display, Rect(), 0, 0, 0, -1U, in main()
192 base = screenshot.getPixels(); in main()
193 w = screenshot.getWidth(); in main()
194 h = screenshot.getHeight(); in main()
195 s = screenshot.getStride(); in main()
196 f = screenshot.getFormat(); in main()
197 size = screenshot.getSize(); in main()
/frameworks/base/docs/html/about/versions/
Dandroid-2.0-highlights.jd9 #jd-content div.screenshot,
22 #jd-content div.screenshot.second {
26 #jd-content div.screenshot img {
57 <div class="screenshot">
58 <img src="{@docRoot}sdk/images/2.0/quick-connect.png" class="screenshot" alt="" /><br/>
62 <div class="screenshot second">
63 <img src="{@docRoot}sdk/images/2.0/multiple-accounts.png" class="screenshot" alt="" /><br/>
67 <div class="screenshot">
68 <img src="{@docRoot}sdk/images/2.0/mms-search.png" class="screenshot" alt="" /><br/>
72 <div class="screenshot second">
[all …]
Dandroid-1.6-highlights.jd9 #jd-content div.screenshot,
22 #jd-content div.screenshot img {
52 <div class="screenshot">
53 <img src="{@docRoot}sdk/images/search.png" class="screenshot" alt="" /><br/>
57 <div class="screenshot">
58 <img src="{@docRoot}sdk/images/camera.png" class="screenshot" alt="" /><br/>
62 <div class="screenshot">
63 <img src="{@docRoot}sdk/images/battery.png" class="screenshot" alt="" /><br/>
124 <div class="screenshot" style="margin-top:-35px">
125 <img src="{@docRoot}sdk/images/market.png" class="screenshot" alt="" /><br/>
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiAutomatorBridge.java109 Bitmap screenshot = mUiAutomation.takeScreenshot(); in takeScreenshot() local
110 if (screenshot == null) { in takeScreenshot()
117 screenshot.compress(Bitmap.CompressFormat.PNG, quality, bos); in takeScreenshot()
131 screenshot.recycle(); in takeScreenshot()
/frameworks/base/core/java/android/view/
DSurfaceControl.java651 public static void screenshot(IBinder display, Surface consumer, in screenshot() method in SurfaceControl
654 screenshot(display, consumer, new Rect(), width, height, minLayer, maxLayer, in screenshot()
668 public static void screenshot(IBinder display, Surface consumer, in screenshot() method in SurfaceControl
670 screenshot(display, consumer, new Rect(), width, height, 0, 0, true, false); in screenshot()
679 public static void screenshot(IBinder display, Surface consumer) { in screenshot() method in SurfaceControl
680 screenshot(display, consumer, new Rect(), 0, 0, 0, 0, true, false); in screenshot()
713 public static Bitmap screenshot(Rect sourceCrop, int width, int height, in screenshot() method in SurfaceControl
735 public static Bitmap screenshot(int width, int height) { in screenshot() method in SurfaceControl
743 private static void screenshot(IBinder display, Surface consumer, Rect sourceCrop, in screenshot() method in SurfaceControl
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
DMainInteractionSession.java131 mScreenshot = (ImageView)mContentView.findViewById(R.id.screenshot); in onCreateContentView()
195 public void onHandleScreenshot(Bitmap screenshot) { in onHandleScreenshot() argument
196 if (screenshot != null) { in onHandleScreenshot()
197 mScreenshot.setImageBitmap(screenshot); in onHandleScreenshot()
199 mScreenshot.setMaxWidth(screenshot.getWidth() / 3); in onHandleScreenshot()
200 mScreenshot.setMaxHeight(screenshot.getHeight() / 3); in onHandleScreenshot()
201 mFullScreenshot.setImageBitmap(screenshot); in onHandleScreenshot()
/frameworks/base/core/jni/
Dandroid_view_SurfaceControl.cpp134 SkAutoTDelete<ScreenshotClient> screenshot(new ScreenshotClient()); in nativeScreenshotBitmap() local
141 res = screenshot->update(displayToken, sourceCrop, width, height, in nativeScreenshotBitmap()
148 screenshotInfo.fWidth = screenshot->getWidth(); in nativeScreenshotBitmap()
149 screenshotInfo.fHeight = screenshot->getHeight(); in nativeScreenshotBitmap()
151 switch (screenshot->getFormat()) { in nativeScreenshotBitmap()
173 screenshot->getStride() * android::bytesPerPixel(screenshot->getFormat()); in nativeScreenshotBitmap()
180 (void*) screenshot->getPixels(), (void*) screenshot.get(), DeleteScreenshot, in nativeScreenshotBitmap()
182 screenshot.detach(); in nativeScreenshotBitmap()
/frameworks/base/core/java/com/android/internal/app/
DIAssistScreenshotReceiver.aidl23 void send(in Bitmap screenshot); in send() argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DScreenshotStubActivity.java16 package com.android.systemui.screenshot;
DScreenshotTest.java16 package com.android.systemui.screenshot;
/frameworks/base/docs/html/tools/help/
DMonkeyImage.jd11 copied from the screen buffer during a screenshot. This object's methods allow you to
18 MonkeyDevice.takeSnapshot()</a></code> to create a new instance from a screenshot. For example, use:
215 orientation it had when the screenshot was taken.
222 orientation it had when the screenshot was taken.
266 orientation it had when the screenshot was taken.
273 orientation it had when the screenshot was taken.
321 screenshot was made.
Dmonkeyrunner_concepts.jd100 The program then takes a screenshot of the result, creating a
102 From this object, the program writes out a <code>.png</code> file containing the screenshot.
130 # Takes a screenshot
133 # Writes the screenshot to a file
Dshell.jd14 <li><a href="#screencap">Taking a device screenshot</a></li>
716 <h2 id="screencap">Taking a device screenshot</h2>
718 <p>The {@code screencap} command is a shell utility for taking a screenshot of a device display.
733 <p>Here's an example screenshot session, using the adb shell to capture the screenshot and the
Dadt.jd247 <img src="{@docRoot}images/layout_editor.png" alt="graphical layout editor screenshot"
355 <img src="{@docRoot}images/canvas.png" alt="screenshot of the canvas" height="553">
361 "{@docRoot}images/layout_outline.png" alt="screenshot of the outline view" height="185">
390 <img src="{@docRoot}images/palette.png" alt="palette screenshot" height="566">
428 …"configuration chooser screenshot" height="50" id="configuration-chooser" name="configuration choo…
/frameworks/base/core/java/android/service/voice/
DIVoiceInteractionSession.aidl34 void handleScreenshot(in Bitmap screenshot); in handleScreenshot() argument
DVoiceInteractionSession.java249 public void handleScreenshot(Bitmap screenshot) {
251 screenshot));
1355 public void onHandleScreenshot(@Nullable Bitmap screenshot) { in onHandleScreenshot() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DTakeScreenshotService.java17 package com.android.systemui.screenshot;
/frameworks/base/docs/html/distribute/tools/promote/
Ddevice-art.jd22 <p>Drag a screenshot from your desktop onto a device to the right.</p>
172 var MSG_INVALID_INPUT_IMAGE = 'Invalid screenshot provided. Screenshots must be PNG files '
174 var MSG_INVALID_WEAR_IMAGE = 'Invalid screenshot provided. Screenshots must be PNG files '
178 var MSG_NO_INPUT_IMAGE = 'Drag a screenshot (in PNG format) from your desktop onto a '
537 alert('The screenshot must have an aspect ratio of ' +
542 alert('The screenshot must have an aspect ratio of ' +
739 alert('Please use a valid screenshot file (PNG or JPEG format).');
/frameworks/base/docs/html/tools/debugging/
Ddebugging-ui.jd102 Activity and system Activity objects. A screenshot of this window appears in
150 To save a screenshot of Tree View to a PNG file, click <strong>Save As PNG</strong> at
155 To save a layered screenshot of your device or emulator to an Adobe Photoshop (PSD)
162 layer independently of others. When you save a layered screenshot, you can examine and
222 A screenshot of the View Hierarchy window appears in figure 2.
294 An annotated screenshot of an individual node in the Tree View window appears in figure 3.
432 This produces a screenshot of the current screen. To do this, click
487 The overlay is not saved as part of the screenshot when you save the screen image as a PNG
491 A screenshot of the Pixel Perfect window appears in figure 4.
Ddebugging-studio.jd373 <p>Android Studio enables you to capture a screenshot or a short video of the device screen
377 <p>To take a screenshot of your app:</p>
387 <li>Optional: To add a device frame around your screenshot, enable the <em>Frame screenshot</em>
/frameworks/base/docs/html/distribute/stories/
Dtablets.jd25 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
108 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
199 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
289 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
Dlocalization.jd39 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
149 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
236 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
DVoiceInteractionSessionConnection.java137 public void send(Bitmap screenshot) throws RemoteException {
141 mScreenshot = screenshot;
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/tools/promote/
Ddevice-art.jd159 var MSG_INVALID_INPUT_IMAGE = 'Invalid screenshot provided. Screenshots must be PNG files '
453 alert('The screenshot must have an aspect ratio of ' +
615 alert('Please use a valid screenshot file (PNG or JPEG format).');
/frameworks/base/core/java/android/app/
DUiAutomationConnection.java157 return SurfaceControl.screenshot(width, height); in takeScreenshot()

123