SurfaceViewpublic class SurfaceView extends com.android.layoutlib.bridge.MockView Mock version of the SurfaceView.
Only non override public methods from the real SurfaceView have been added in there.
Methods that take an unknown class as parameter or as return object, have been removed for now.
TODO: generate automatically. |
Fields Summary |
---|
private SurfaceHolder | mSurfaceHolder |
Constructors Summary |
---|
public SurfaceView(android.content.Context context)
this(context, null);
| public SurfaceView(android.content.Context context, android.util.AttributeSet attrs)
this(context, attrs , 0);
| public SurfaceView(android.content.Context context, android.util.AttributeSet attrs, int defStyle)
super(context, attrs, defStyle);
| public SurfaceView(android.content.Context context, android.util.AttributeSet attrs, int defStyleAttr, int defStyleRes)
super(context, attrs, defStyleAttr, defStyleRes);
|
Methods Summary |
---|
public SurfaceHolder | getHolder()
return mSurfaceHolder;
|
|