Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
This class provides a list of bitmaps for various runtime densities. It is supplied
as the source to BitmapImage or Image and as the icon of a Button. The components
will use the Application.runtimeDPI to choose which image to display.
public var source160dpi:Object
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The source to use if the Application.runtimeDPI
is DPIClassification.DPI_160
.
public var source240dpi:Object
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The source to use if the Application.runtimeDPI
is DPIClassification.DPI_240
.
public var source320dpi:Object
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
The source to use if the Application.runtimeDPI
is DPIClassification.DPI_320
.
public function getSource(desiredDPI:Number):Object
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Select one of the sourceXXXdpi properties based on the given DPI. This
function handles the fallback to different sourceXXXdpi properties
if the given one is null.
The strategy is to try to choose the next highest
property if it is not null, then return a lower property if not null, then
just return null.
Parameters
| desiredDPI:Number — desired DPI.
|
Returns | Object — One of the sourceXXXdpi properties based on the desired DPI.
|
Mon Feb 18 2013, 01:33 PM +11:00