java.lang.Object | |
↳ | android.view.Display |
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | DEFAULT_DISPLAY | Specify the default Display |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the index of this display.
| |||||||||||
Returns the raw height of the display, in pixels.
| |||||||||||
Initialize a DisplayMetrics object from this display's data.
| |||||||||||
This method is deprecated.
use
getRotation() | |||||||||||
Return the native pixel format of the display.
| |||||||||||
Return the refresh rate of this display in frames per second.
| |||||||||||
Returns the rotation of the screen from its "natural" orientation.
| |||||||||||
Returns the raw width of the display, in pixels.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Specify the default Display
Returns the index of this display. This is currently undefined; do not use.
Returns the raw height of the display, in pixels. Note that this should not generally be used for computing layouts, since a device will typically have screen decoration (such as a status bar) along the edges of the display that reduce the amount of application space available from the raw size returned here. This value is adjusted for you based on the current rotation of the display.
Initialize a DisplayMetrics object from this display's data.
Return the native pixel format of the display. The returned value
may be one of the constants int PixelFormat
.
Return the refresh rate of this display in frames per second.
Returns the rotation of the screen from its "natural" orientation.
The returned value may be Surface.ROTATION_0
(no rotation), Surface.ROTATION_90
,
Surface.ROTATION_180
, or
Surface.ROTATION_270
. For
example, if a device has a naturally tall screen, and the user has
turned it on its side to go into a landscape orientation, the value
returned here may be either Surface.ROTATION_90
or Surface.ROTATION_270
depending on
the direction it was turned. The angle is the rotation of the drawn
graphics on the screen, which is the opposite direction of the physical
rotation of the device. For example, if the device is rotated 90
degrees counter-clockwise, to compensate rendering will be rotated by
90 degrees clockwise and thus the returned value here will be
Surface.ROTATION_90
.
Returns the raw width of the display, in pixels. Note that this should not generally be used for computing layouts, since a device will typically have screen decoration (such as a status bar) along the edges of the display that reduce the amount of application space available from the raw size returned here. This value is adjusted for you based on the current rotation of the display.