SurfaceControlViewHost
open class SurfaceControlViewHost
| kotlin.Any | |
| ↳ | android.view.SurfaceControlViewHost |
Utility class for adding a View hierarchy to a SurfaceControl. The View hierarchy will render in to a root SurfaceControl, and receive input based on the SurfaceControl's placement on-screen. The primary usage of this class is to embed a View hierarchy from one process in to another. After the SurfaceControlViewHost has been set up in the embedded content provider, we can send the SurfaceControlViewHost.SurfacePackage to the host process. The host process can then attach the hierarchy to a SurfaceView within its own by calling SurfaceView.setChildSurfacePackage.
Summary
| Nested classes | |
|---|---|
| open |
Specifies the layout parameters for a |
|
Package encapsulating a Surface hierarchy which contains interactive view elements. |
|
| Public constructors | |
|---|---|
SurfaceControlViewHost(context: Context, display: Display, hostToken: IBinder?)Construct a new SurfaceControlViewHost. |
|
SurfaceControlViewHost(context: Context, display: Display, hostInputTransferToken: InputTransferToken?)Construct a new SurfaceControlViewHost. |
|
| Public methods | |
|---|---|
| open SurfaceControlViewHost.LayoutParams |
Returns the |
| open SurfaceControlViewHost.SurfacePackage? |
Return a SurfacePackage for the root SurfaceControl of the embedded hierarchy. |
| open View? |
getView() |
| open Unit |
Modifies the |
| open Unit |
Modify the size of the root view. |
| open Unit |
release()Trigger the tear down of the embedded view hierarchy and release the SurfaceControl. |
| open Unit |
setView(view: View, attrs: SurfaceControlViewHost.LayoutParams)Sets the root view of the |
| open Unit |
Set the root view of the SurfaceControlViewHost. |
| open Boolean |
Transfer the currently in progress touch gesture to the parent (if any) of this SurfaceControlViewHost. |
| Protected methods | |
|---|---|
| open Unit |
finalize()Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. |
Public constructors
SurfaceControlViewHost
SurfaceControlViewHost(
context: Context,
display: Display,
hostToken: IBinder?)
Construct a new SurfaceControlViewHost. The root Surface will be allocated internally and is accessible via getSurfacePackage(). The hostToken parameter, primarily used for ANR reporting, must be obtained from whomever will be hosting the embedded hierarchy. It's accessible from SurfaceView.getHostToken.
| Parameters | |
|---|---|
context |
Context: The Context object for your activity or application. This value cannot be null. |
display |
Display: The Display the hierarchy will be placed on. This value cannot be null. |
hostToken |
IBinder?: The host token, as discussed above. This value may be null. |
SurfaceControlViewHost
SurfaceControlViewHost(
context: Context,
display: Display,
hostInputTransferToken: InputTransferToken?)
Construct a new SurfaceControlViewHost. The root Surface will be allocated internally and is accessible via getSurfacePackage().
The hostInputTransferToken parameter allows the host and embedded to be associated with each other to allow transferring touch gesture and focus. This is also used for ANR reporting. It's accessible from AttachedSurfaceControl.getInputTransferToken().
| Parameters | |
|---|---|
context |
Context: The Context object for your activity or application. This value cannot be null. |
display |
Display: The Display the hierarchy will be placed on. This value cannot be null. |
hostInputTransferToken |
InputTransferToken?: The host input transfer token, as discussed above. This value may be null. |
Public methods
getLayoutParams
open fun getLayoutParams(): SurfaceControlViewHost.LayoutParams
Returns the LayoutParams of the root view.
| Return | |
|---|---|
SurfaceControlViewHost.LayoutParams |
This value cannot be null. |
getSurfacePackage
open fun getSurfacePackage(): SurfaceControlViewHost.SurfacePackage?
Return a SurfacePackage for the root SurfaceControl of the embedded hierarchy. Rather than be directly reparented using SurfaceControl.Transaction this SurfacePackage should be passed to SurfaceView.setChildSurfacePackage which will not only reparent the Surface, but ensure the accessibility hierarchies are linked.
| Return | |
|---|---|
SurfaceControlViewHost.SurfacePackage? |
This value may be null. |
getView
open fun getView(): View?
| Return | |
|---|---|
View? |
The view passed to setView, or null if none has been passed. |
relayout
open fun relayout(attrs: SurfaceControlViewHost.LayoutParams): Unit
Modifies the LayoutParams of the root view.
| Parameters | |
|---|---|
attrs |
SurfaceControlViewHost.LayoutParams: This value cannot be null. |
relayout
open fun relayout(
width: Int,
height: Int
): Unit
Modify the size of the root view.
| Parameters | |
|---|---|
width |
Int: Width in pixels |
height |
Int: Height in pixels |
release
open fun release(): Unit
Trigger the tear down of the embedded view hierarchy and release the SurfaceControl. This will result in onDispatchedFromWindow being dispatched to the embedded view hierarchy and render the object unusable.
setView
open fun setView(
view: View,
attrs: SurfaceControlViewHost.LayoutParams
): Unit
Sets the root view of the SurfaceControlViewHost. This view will render in to the SurfaceControl, and receive input based on the SurfaceControl's positioning on screen. It will be laid out as if it were in a window of the passed in width and height.
| Parameters | |
|---|---|
view |
View: The View to add. This value cannot be null. |
attrs |
SurfaceControlViewHost.LayoutParams: The LayoutParams parameters for the View. This value cannot be null. |
setView
open fun setView(
view: View,
width: Int,
height: Int
): Unit
Set the root view of the SurfaceControlViewHost. This view will render in to the SurfaceControl, and receive input based on the SurfaceControls positioning on screen. It will be laid as if it were in a window of the passed in width and height.
| Parameters | |
|---|---|
view |
View: The View to add. This value cannot be null. |
width |
Int: The width to layout the View within, in pixels. |
height |
Int: The height to layout the View within, in pixels. |
transferTouchGestureToHost
open funtransferTouchGestureToHost(): Boolean
Deprecated: Use WindowManager.transferTouchGesture(InputTransferToken,InputTransferToken) instead.
Transfer the currently in progress touch gesture to the parent (if any) of this SurfaceControlViewHost. This requires that the SurfaceControlViewHost was created with an associated host InputTransferToken.
| Return | |
|---|---|
Boolean |
Whether the touch stream was transferred. |
Protected methods
finalize
protected open fun finalize(): Unit
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. A subclass overrides the finalize method to dispose of system resources or to perform other cleanup.
The general contract of finalize is that it is invoked if and when the Java virtual machine has determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, except as a result of an action taken by the finalization of some other object or class which is ready to be finalized. The finalize method may take any action, including making this object available again to other threads; the usual purpose of finalize, however, is to perform cleanup actions before the object is irrevocably discarded. For example, the finalize method for an object that represents an input/output connection might perform explicit I/O transactions to break the connection before the object is permanently discarded.
The finalize method of class Object performs no special action; it simply returns normally. Subclasses of Object may override this definition.
The Java programming language does not guarantee which thread will invoke the finalize method for any given object. It is guaranteed, however, that the thread that invokes finalize will not be holding any user-visible synchronization locks when finalize is invoked. If an uncaught exception is thrown by the finalize method, the exception is ignored and finalization of that object terminates.
After the finalize method has been invoked for an object, no further action is taken until the Java virtual machine has again determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, including possible actions by other objects or classes which are ready to be finalized, at which point the object may be discarded.
The finalize method is never invoked more than once by a Java virtual machine for any given object.
Any exception thrown by the finalize method causes the finalization of this object to be halted, but is otherwise ignored.
| Exceptions | |
|---|---|
java.lang.Throwable |
the Exception raised by this method |