패키지 | spark.preloaders |
클래스 | public class SplashScreenImageSource |
상속 | SplashScreenImageSource Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.6 |
런타임 버전: | 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>MXML 구문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" >
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
aspectRatio : String = "null"
The required aspect ratio of the mobile device. | SplashScreenImageSource | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | 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 |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | SplashScreenImageSource | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
aspectRatio | 속성 |
public var aspectRatio:String = "null"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.6 |
런타임 버전: | 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.
관련 API 요소
dpi | 속성 |
public var dpi:Number = NaN
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.6 |
런타임 버전: | AIR 3 |
The required DPI of the device to display the associated image.
A value of NaN means the property is ignored by SplashScreenImage.
기본값: NaN.
minResolution | 속성 |
public var minResolution:Number = NaN
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.6 |
런타임 버전: | 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.
기본값: NaN.
source | 속성 |
public var source:Class
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.6 |
런타임 버전: | 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"/>
기본값: null.
관련 API 요소
SplashScreenImageSource | () | 생성자 |
public function SplashScreenImageSource()
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.6 |
런타임 버전: | AIR 3 |
Constructor.
Tue Jun 12 2018, 03:17 PM Z