Pacchetto | spark.preloaders |
Classe | public class SplashScreenImageSource |
Ereditarietà | SplashScreenImageSource Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.6 |
Versioni runtime: | AIR 3 |
You typically use one or more SplashScreenImageSource
objects to define a SplashScreenImage class in MXML
and set the application's splashScreenImage
property to that class.
Shown below is SplashScreenImage component with three different definitions for SplashScreenImageSource:
<?xml version="1.0" encoding="utf-8"?> <s:SplashScreenImage xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"> <!-- Default splashscreen image. --> <s:SplashScreenImageSource source="@Embed('assets/logoDefault.jpg')"/> <s:SplashScreenImageSource source="@Embed('assets/logo240Portrait.jpg')" dpi="240" aspectRatio="portrait"/> <s:SplashScreenImageSource source="@Embed('assets/logo240Landscape.jpg')" dpi="240" aspectRatio="landscape"/> </s:SplashScreenImage>Sintassi MXMLNascondi sintassi MXML
The <s:SplashScreenImageSource>
tag inherits all of the tag
attributes of its superclass and adds the following tag attributes:
<s:SplashScreenImageSource Properties aspectRatio="null" dpi="NaN" minResolution="NaN" source="null" >
Elementi API correlati
Proprietà | Definito da | ||
---|---|---|---|
aspectRatio : String = "null"
The required aspect ratio of the mobile device. | SplashScreenImageSource | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
dpi : Number = NaN
The required DPI of the device to display the associated image. | SplashScreenImageSource | ||
minResolution : Number = NaN
The required minimum size of the mobile device's resolution needed
to display the image. | SplashScreenImageSource | ||
source : Class
The image class for the splash screen to use for the defined
device configuration. | SplashScreenImageSource |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | SplashScreenImageSource | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
aspectRatio | proprietà |
public var aspectRatio:String = "null"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.6 |
Versioni runtime: | AIR 3 |
The required aspect ratio of the mobile device.
This property can be either flash.display.StageAspectRatio.PORTRAIT
or flash.display.StageAspectRatio.LANDSCAPE
.
If not set, then SplashScreenImage
ignores this property.
Elementi API correlati
dpi | proprietà |
public var dpi:Number = NaN
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.6 |
Versioni runtime: | AIR 3 |
The required DPI of the device to display the associated image.
A value of NaN means the property is ignored by SplashScreenImage.
Il valore predefinito è NaN.
minResolution | proprietà |
public var minResolution:Number = NaN
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.6 |
Versioni runtime: | AIR 3 |
The required minimum size of the mobile device's resolution needed
to display the image.
The device resolution is the maximum of the stage width and height, in pixels.
The value of the minResolution
property is compared against the larger
of the values of the Stage.stageWidth
and Stage.stageHeight
properties.
The larger of the two values must be equal to or greater than the minResolution
property.
You can use this property to display different images based on the pixel resolution of a device.
A value of NaN means the property is ignored by the SplashScreenImage.
Il valore predefinito è NaN.
source | proprietà |
public var source:Class
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.6 |
Versioni runtime: | AIR 3 |
The image class for the splash screen to use for the defined device configuration. Typically you set this property to an embedded resource.
For example:
<s:SplashScreenImageSource source="@Embed('assets/logo240Portrait.jpg')" dpi="240" aspectRatio="portrait"/>
Il valore predefinito è null.
Elementi API correlati
SplashScreenImageSource | () | Funzione di costruzione |
public function SplashScreenImageSource()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4.6 |
Versioni runtime: | AIR 3 |
Constructor.
Tue Jun 12 2018, 02:44 PM Z