blob: c5d45c318f670db7babf1b85f404aaa21061a6a5 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.view;
18
John Reck4a6f2c52019-10-16 16:17:17 -070019import android.annotation.IntRange;
20import android.annotation.NonNull;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.graphics.Canvas;
John Reck4a6f2c52019-10-16 16:17:17 -070022import android.graphics.PixelFormat;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.graphics.Rect;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024
25/**
26 * Abstract interface to someone holding a display surface. Allows you to
27 * control the surface size and format, edit the pixels in the surface, and
28 * monitor changes to the surface. This interface is typically available
29 * through the {@link SurfaceView} class.
John Reck6bc70142016-10-26 16:49:17 -070030 *
Glenn Kasten334031c2010-11-09 21:54:38 -080031 * <p>When using this interface from a thread other than the one running
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032 * its {@link SurfaceView}, you will want to carefully read the
Glenn Kasten334031c2010-11-09 21:54:38 -080033 * methods
34 * {@link #lockCanvas} and {@link Callback#surfaceCreated Callback.surfaceCreated()}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035 */
36public interface SurfaceHolder {
Mathias Agopiand2112302010-12-07 19:38:17 -080037
38 /** @deprecated this is ignored, this value is set automatically when needed. */
Mathias Agopian317a6282009-08-13 17:29:02 -070039 @Deprecated
Mathias Agopiand2112302010-12-07 19:38:17 -080040 public static final int SURFACE_TYPE_NORMAL = 0;
41 /** @deprecated this is ignored, this value is set automatically when needed. */
Mathias Agopian317a6282009-08-13 17:29:02 -070042 @Deprecated
Mathias Agopiand2112302010-12-07 19:38:17 -080043 public static final int SURFACE_TYPE_HARDWARE = 1;
44 /** @deprecated this is ignored, this value is set automatically when needed. */
45 @Deprecated
46 public static final int SURFACE_TYPE_GPU = 2;
47 /** @deprecated this is ignored, this value is set automatically when needed. */
48 @Deprecated
49 public static final int SURFACE_TYPE_PUSH_BUFFERS = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050
51 /**
52 * Exception that is thrown from {@link #lockCanvas} when called on a Surface
Glenn Kasten334031c2010-11-09 21:54:38 -080053 * whose type is SURFACE_TYPE_PUSH_BUFFERS.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 */
55 public static class BadSurfaceTypeException extends RuntimeException {
56 public BadSurfaceTypeException() {
57 }
58
59 public BadSurfaceTypeException(String name) {
60 super(name);
61 }
62 }
63
64 /**
65 * A client may implement this interface to receive information about
66 * changes to the surface. When used with a {@link SurfaceView}, the
67 * Surface being held is only available between calls to
68 * {@link #surfaceCreated(SurfaceHolder)} and
Glenn Kasten334031c2010-11-09 21:54:38 -080069 * {@link #surfaceDestroyed(SurfaceHolder)}. The Callback is set with
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 * {@link SurfaceHolder#addCallback SurfaceHolder.addCallback} method.
71 */
72 public interface Callback {
73 /**
74 * This is called immediately after the surface is first created.
75 * Implementations of this should start up whatever rendering code
76 * they desire. Note that only one thread can ever draw into
77 * a {@link Surface}, so you should not draw into the Surface here
78 * if your normal rendering will be in another thread.
John Reck6bc70142016-10-26 16:49:17 -070079 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 * @param holder The SurfaceHolder whose surface is being created.
81 */
John Reck4a6f2c52019-10-16 16:17:17 -070082 void surfaceCreated(@NonNull SurfaceHolder holder);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083
84 /**
85 * This is called immediately after any structural changes (format or
86 * size) have been made to the surface. You should at this point update
87 * the imagery in the surface. This method is always called at least
88 * once, after {@link #surfaceCreated}.
John Reck6bc70142016-10-26 16:49:17 -070089 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 * @param holder The SurfaceHolder whose surface has changed.
John Reck4a6f2c52019-10-16 16:17:17 -070091 * @param format The new {@link PixelFormat} of the surface.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 * @param width The new width of the surface.
93 * @param height The new height of the surface.
94 */
John Reck4a6f2c52019-10-16 16:17:17 -070095 void surfaceChanged(@NonNull SurfaceHolder holder, @PixelFormat.Format int format,
96 @IntRange(from = 0) int width, @IntRange(from = 0) int height);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097
98 /**
99 * This is called immediately before a surface is being destroyed. After
100 * returning from this call, you should no longer try to access this
101 * surface. If you have a rendering thread that directly accesses
John Reck6bc70142016-10-26 16:49:17 -0700102 * the surface, you must ensure that thread is no longer touching the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103 * Surface before returning from this function.
John Reck6bc70142016-10-26 16:49:17 -0700104 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 * @param holder The SurfaceHolder whose surface is being destroyed.
106 */
John Reck4a6f2c52019-10-16 16:17:17 -0700107 void surfaceDestroyed(@NonNull SurfaceHolder holder);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 }
109
110 /**
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700111 * Additional callbacks that can be received for {@link Callback}.
112 */
113 public interface Callback2 extends Callback {
114 /**
115 * Called when the application needs to redraw the content of its
116 * surface, after it is resized or for some other reason. By not
Glenn Kasten334031c2010-11-09 21:54:38 -0800117 * returning from here until the redraw is complete, you can ensure that
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700118 * the user will not see your surface in a bad state (at its new
119 * size before it has been correctly drawn that way). This will
120 * typically be preceeded by a call to {@link #surfaceChanged}.
121 *
Robert Carr25cfa132016-11-16 13:24:09 -0800122 * As of O, {@link #surfaceRedrawNeededAsync} may be implemented
123 * to provide a non-blocking implementation. If {@link #surfaceRedrawNeededAsync}
124 * is not implemented, then this will be called instead.
125 *
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700126 * @param holder The SurfaceHolder whose surface has changed.
127 */
John Reck4a6f2c52019-10-16 16:17:17 -0700128 void surfaceRedrawNeeded(@NonNull SurfaceHolder holder);
Robert Carr25cfa132016-11-16 13:24:09 -0800129
130 /**
131 * An alternative to surfaceRedrawNeeded where it is not required to block
132 * until the redraw is complete. You should initiate the redraw, and return,
133 * later invoking drawingFinished when your redraw is complete.
134 *
135 * This can be useful to avoid blocking your main application thread on rendering.
136 *
137 * As of O, if this is implemented {@link #surfaceRedrawNeeded} will not be called.
138 * However it is still recommended to implement {@link #surfaceRedrawNeeded} for
139 * compatibility with older versions of the platform.
140 *
141 * @param holder The SurfaceHolder which needs redrawing.
142 * @param drawingFinished A runnable to signal completion. This may be invoked
143 * from any thread.
144 *
145 */
John Reck4a6f2c52019-10-16 16:17:17 -0700146 default void surfaceRedrawNeededAsync(@NonNull SurfaceHolder holder,
147 @NonNull Runnable drawingFinished) {
Robert Carr25cfa132016-11-16 13:24:09 -0800148 surfaceRedrawNeeded(holder);
149 drawingFinished.run();
150 }
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700151 }
152
153 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 * Add a Callback interface for this holder. There can several Callback
Glenn Kasten334031c2010-11-09 21:54:38 -0800155 * interfaces associated with a holder.
John Reck6bc70142016-10-26 16:49:17 -0700156 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 * @param callback The new Callback interface.
158 */
159 public void addCallback(Callback callback);
160
161 /**
162 * Removes a previously added Callback interface from this holder.
John Reck6bc70142016-10-26 16:49:17 -0700163 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 * @param callback The Callback interface to remove.
165 */
166 public void removeCallback(Callback callback);
167
168 /**
169 * Use this method to find out if the surface is in the process of being
170 * created from Callback methods. This is intended to be used with
171 * {@link Callback#surfaceChanged}.
John Reck6bc70142016-10-26 16:49:17 -0700172 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173 * @return true if the surface is in the process of being created.
174 */
175 public boolean isCreating();
John Reck6bc70142016-10-26 16:49:17 -0700176
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 /**
Mathias Agopiand2112302010-12-07 19:38:17 -0800178 * Sets the surface's type.
John Reck6bc70142016-10-26 16:49:17 -0700179 *
Mathias Agopiand2112302010-12-07 19:38:17 -0800180 * @deprecated this is ignored, this value is set automatically when needed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 */
Mathias Agopiand2112302010-12-07 19:38:17 -0800182 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800183 public void setType(int type);
184
185 /**
186 * Make the surface a fixed size. It will never change from this size.
Jeff Smitha45746e2012-07-19 14:19:24 -0500187 * When working with a {@link SurfaceView}, this must be called from the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188 * same thread running the SurfaceView's window.
John Reck6bc70142016-10-26 16:49:17 -0700189 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 * @param width The surface's width.
191 * @param height The surface's height.
192 */
193 public void setFixedSize(int width, int height);
194
195 /**
196 * Allow the surface to resized based on layout of its container (this is
197 * the default). When this is enabled, you should monitor
198 * {@link Callback#surfaceChanged} for changes to the size of the surface.
Jeff Smitha45746e2012-07-19 14:19:24 -0500199 * When working with a {@link SurfaceView}, this must be called from the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 * same thread running the SurfaceView's window.
201 */
202 public void setSizeFromLayout();
203
204 /**
205 * Set the desired PixelFormat of the surface. The default is OPAQUE.
Jeff Smitha45746e2012-07-19 14:19:24 -0500206 * When working with a {@link SurfaceView}, this must be called from the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800207 * same thread running the SurfaceView's window.
John Reck6bc70142016-10-26 16:49:17 -0700208 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209 * @param format A constant from PixelFormat.
John Reck6bc70142016-10-26 16:49:17 -0700210 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 * @see android.graphics.PixelFormat
212 */
213 public void setFormat(int format);
214
215 /**
216 * Enable or disable option to keep the screen turned on while this
217 * surface is displayed. The default is false, allowing it to turn off.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 * This is safe to call from any thread.
John Reck6bc70142016-10-26 16:49:17 -0700219 *
Glenn Kasten334031c2010-11-09 21:54:38 -0800220 * @param screenOn Set to true to force the screen to stay on, false
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221 * to allow it to turn off.
222 */
223 public void setKeepScreenOn(boolean screenOn);
John Reck6bc70142016-10-26 16:49:17 -0700224
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 /**
226 * Start editing the pixels in the surface. The returned Canvas can be used
227 * to draw into the surface's bitmap. A null is returned if the surface has
Glenn Kasten334031c2010-11-09 21:54:38 -0800228 * not been created or otherwise cannot be edited. You will usually need
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 * to implement {@link Callback#surfaceCreated Callback.surfaceCreated}
230 * to find out when the Surface is available for use.
John Reck6bc70142016-10-26 16:49:17 -0700231 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 * <p>The content of the Surface is never preserved between unlockCanvas() and
233 * lockCanvas(), for this reason, every pixel within the Surface area
234 * must be written. The only exception to this rule is when a dirty
Glenn Kasten334031c2010-11-09 21:54:38 -0800235 * rectangle is specified, in which case, non-dirty pixels will be
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 * preserved.
John Reck6bc70142016-10-26 16:49:17 -0700237 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 * <p>If you call this repeatedly when the Surface is not ready (before
239 * {@link Callback#surfaceCreated Callback.surfaceCreated} or after
240 * {@link Callback#surfaceDestroyed Callback.surfaceDestroyed}), your calls
241 * will be throttled to a slow rate in order to avoid consuming CPU.
John Reck6bc70142016-10-26 16:49:17 -0700242 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 * <p>If null is not returned, this function internally holds a lock until
244 * the corresponding {@link #unlockCanvasAndPost} call, preventing
245 * {@link SurfaceView} from creating, destroying, or modifying the surface
Glenn Kasten334031c2010-11-09 21:54:38 -0800246 * while it is being drawn. This can be more convenient than accessing
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 * the Surface directly, as you do not need to do special synchronization
248 * with a drawing thread in {@link Callback#surfaceDestroyed
249 * Callback.surfaceDestroyed}.
John Reck6bc70142016-10-26 16:49:17 -0700250 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800251 * @return Canvas Use to draw into the surface.
252 */
253 public Canvas lockCanvas();
254
John Reck6bc70142016-10-26 16:49:17 -0700255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 /**
Glenn Kasten334031c2010-11-09 21:54:38 -0800257 * Just like {@link #lockCanvas()} but allows specification of a dirty rectangle.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 * Every
259 * pixel within that rectangle must be written; however pixels outside
260 * the dirty rectangle will be preserved by the next call to lockCanvas().
John Reck6bc70142016-10-26 16:49:17 -0700261 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800262 * @see android.view.SurfaceHolder#lockCanvas
John Reck6bc70142016-10-26 16:49:17 -0700263 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 * @param dirty Area of the Surface that will be modified.
265 * @return Canvas Use to draw into the surface.
266 */
267 public Canvas lockCanvas(Rect dirty);
268
269 /**
John Reck6bc70142016-10-26 16:49:17 -0700270 * <p>Just like {@link #lockCanvas()} but the returned canvas is hardware-accelerated.
271 *
272 * <p>See the <a href="{@docRoot}guide/topics/graphics/hardware-accel.html#unsupported">
273 * unsupported drawing operations</a> for a list of what is and isn't
274 * supported in a hardware-accelerated canvas.
275 *
276 * @return Canvas Use to draw into the surface.
277 * @throws IllegalStateException If the canvas cannot be locked.
278 */
279 default Canvas lockHardwareCanvas() {
280 throw new IllegalStateException("This SurfaceHolder doesn't support lockHardwareCanvas");
281 }
282
283 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800284 * Finish editing pixels in the surface. After this call, the surface's
285 * current pixels will be shown on the screen, but its content is lost,
286 * in particular there is no guarantee that the content of the Surface
287 * will remain unchanged when lockCanvas() is called again.
John Reck6bc70142016-10-26 16:49:17 -0700288 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 * @see #lockCanvas()
290 *
291 * @param canvas The Canvas previously returned by lockCanvas().
292 */
293 public void unlockCanvasAndPost(Canvas canvas);
294
295 /**
296 * Retrieve the current size of the surface. Note: do not modify the
297 * returned Rect. This is only safe to call from the thread of
298 * {@link SurfaceView}'s window, or while inside of
299 * {@link #lockCanvas()}.
John Reck6bc70142016-10-26 16:49:17 -0700300 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 * @return Rect The surface's dimensions. The left and top are always 0.
302 */
303 public Rect getSurfaceFrame();
304
305 /**
306 * Direct access to the surface object. The Surface may not always be
307 * available -- for example when using a {@link SurfaceView} the holder's
308 * Surface is not created until the view has been attached to the window
309 * manager and performed a layout in order to determine the dimensions
310 * and screen position of the Surface. You will thus usually need
311 * to implement {@link Callback#surfaceCreated Callback.surfaceCreated}
312 * to find out when the Surface is available for use.
John Reck6bc70142016-10-26 16:49:17 -0700313 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800314 * <p>Note that if you directly access the Surface from another thread,
315 * it is critical that you correctly implement
316 * {@link Callback#surfaceCreated Callback.surfaceCreated} and
317 * {@link Callback#surfaceDestroyed Callback.surfaceDestroyed} to ensure
318 * that thread only accesses the Surface while it is valid, and that the
319 * Surface does not get destroyed while the thread is using it.
John Reck6bc70142016-10-26 16:49:17 -0700320 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321 * <p>This method is intended to be used by frameworks which often need
322 * direct access to the Surface object (usually to pass it to native code).
John Reck6bc70142016-10-26 16:49:17 -0700323 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800324 * @return Surface The surface.
325 */
326 public Surface getSurface();
327}