Lines Matching defs:SurfaceView

44  * SurfaceView takes care of placing the surface at the correct location on the
48 * SurfaceView; the SurfaceView punches a hole in its window to allow its
50 * compositing with the Surface any siblings of the SurfaceView that would
58 * properties are used to draw a sibling view on top of the SurfaceView, the
64 * <p>The Surface will be created for you while the SurfaceView's window is
74 * <li> All SurfaceView and
76 * from the thread running the SurfaceView's window (typically the main thread
86 public class SurfaceView extends View {
87 static private final String TAG = "SurfaceView";
146 /* Set SurfaceView's format to 565 by default to maintain backward
180 public SurfaceView(Context context) {
185 public SurfaceView(Context context, AttributeSet attrs) {
190 public SurfaceView(Context context, AttributeSet attrs, int defStyle) {
201 * SurfaceView's underlying surface.
215 mLayout.setTitle("SurfaceView");
241 // we go from/to the GONE state. However, SurfaceView needs
371 * SurfaceView is in will be visible on top of its surface.
638 private final WeakReference<SurfaceView> mSurfaceView;
640 public MyWindow(SurfaceView surfaceView) {
641 mSurfaceView = new WeakReference<SurfaceView>(surfaceView);
647 SurfaceView surfaceView = mSurfaceView.get();
650 "SurfaceView", surfaceView + " got resized: w=" + frame.width()
670 // The point of SurfaceView is to let the app control the surface.
674 SurfaceView surfaceView = mSurfaceView.get();
682 Log.w("SurfaceView", "Unexpected focus in surface: focus=" + hasFocus + ", touchEnabled=" + touchEnabled);
734 // means 565 for SurfaceView