VirtualDisplayConfig.Builder
public
static
final
class
VirtualDisplayConfig.Builder
extends Object
java.lang.Object | |
↳ | android.hardware.display.VirtualDisplayConfig.Builder |
A builder for VirtualDisplayConfig
.
Summary
Public constructors | |
---|---|
Builder(String name, int width, int height, int densityDpi)
Creates a new Builder. |
Public methods | |
---|---|
VirtualDisplayConfig.Builder
|
addDisplayCategory(String displayCategory)
Adds a display category. |
VirtualDisplayConfig
|
build()
Builds the |
VirtualDisplayConfig.Builder
|
setDisplayCategories(Set<String> displayCategories)
Sets the display categories. |
VirtualDisplayConfig.Builder
|
setFlags(int flags)
Sets the virtual display flags, a combination of
|
VirtualDisplayConfig.Builder
|
setRequestedRefreshRate(float requestedRefreshRate)
Sets the refresh rate of a virtual display in frames per second. |
VirtualDisplayConfig.Builder
|
setSurface(Surface surface)
Sets the surface to which the content of the virtual display should be rendered. |
Inherited methods | |
---|---|
Public constructors
Builder
public Builder (String name, int width, int height, int densityDpi)
Creates a new Builder.
Parameters | |
---|---|
name |
String : The name of the virtual display, must be non-empty.
This value cannot be null . |
width |
int : The width of the virtual display in pixels. Must be greater than 0.
Value is 1 or greater |
height |
int : The height of the virtual display in pixels. Must be greater than 0.
Value is 1 or greater |
densityDpi |
int : The density of the virtual display in dpi. Must be greater than 0.
Value is 1 or greater |
Public methods
addDisplayCategory
public VirtualDisplayConfig.Builder addDisplayCategory (String displayCategory)
Adds a display category.
Parameters | |
---|---|
displayCategory |
String : This value cannot be null . |
Returns | |
---|---|
VirtualDisplayConfig.Builder |
This value cannot be null . |
See also:
build
public VirtualDisplayConfig build ()
Builds the VirtualDisplayConfig
instance.
Returns | |
---|---|
VirtualDisplayConfig |
This value cannot be null . |
setDisplayCategories
public VirtualDisplayConfig.Builder setDisplayCategories (Set<String> displayCategories)
Sets the display categories.
The categories of the display indicate the type of activities allowed to run on that
display. Activities can declare a display category using
ActivityInfo.requiredDisplayCategory
.
Parameters | |
---|---|
displayCategories |
Set : This value cannot be null . |
Returns | |
---|---|
VirtualDisplayConfig.Builder |
This value cannot be null . |
setFlags
public VirtualDisplayConfig.Builder setFlags (int flags)
Sets the virtual display flags, a combination of
DisplayManager#VIRTUAL_DISPLAY_FLAG_PUBLIC
,
DisplayManager#VIRTUAL_DISPLAY_FLAG_PRESENTATION
,
DisplayManager#VIRTUAL_DISPLAY_FLAG_SECURE
,
DisplayManager#VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY
,
or DisplayManager#VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR
.
Parameters | |
---|---|
flags |
int : Value is either 0 or a combination of DisplayManager.VIRTUAL_DISPLAY_FLAG_PUBLIC , DisplayManager.VIRTUAL_DISPLAY_FLAG_PRESENTATION , DisplayManager.VIRTUAL_DISPLAY_FLAG_SECURE , DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_CONTENT_ONLY , DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR , android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_CAN_SHOW_WITH_INSECURE_KEYGUARD, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SUPPORTS_TOUCH, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_ROTATES_WITH_CONTENT, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_DESTROY_CONTENT_ON_REMOVAL, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_SHOULD_SHOW_SYSTEM_DECORATIONS, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_TRUSTED, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_DISPLAY_GROUP, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_ALWAYS_UNLOCKED, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_TOUCH_FEEDBACK_DISABLED, android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_OWN_FOCUS, and android.hardware.display.DisplayManager.VIRTUAL_DISPLAY_FLAG_STEAL_TOP_FOCUS_DISABLED |
Returns | |
---|---|
VirtualDisplayConfig.Builder |
This value cannot be null . |
setRequestedRefreshRate
public VirtualDisplayConfig.Builder setRequestedRefreshRate (float requestedRefreshRate)
Sets the refresh rate of a virtual display in frames per second.
For best results, specify a divisor of the physical refresh rate, e.g., 30 or 60 on a 120hz display. If an arbitrary refresh rate is specified, the rate will be rounded up to a divisor of the physical display. If unset or zero, the virtual display will be refreshed at the physical display refresh rate.
Parameters | |
---|---|
requestedRefreshRate |
float : Value is 0.0f or greater |
Returns | |
---|---|
VirtualDisplayConfig.Builder |
This value cannot be null . |
See also:
setSurface
public VirtualDisplayConfig.Builder setSurface (Surface surface)
Sets the surface to which the content of the virtual display should be rendered.
The surface can also be set after the display creation using
VirtualDisplay#setSurface(Surface)
.
Parameters | |
---|---|
surface |
Surface : This value may be null . |
Returns | |
---|---|
VirtualDisplayConfig.Builder |
This value cannot be null . |