|
1 <!--- |
|
2 Licensed to the Apache Software Foundation (ASF) under one |
|
3 or more contributor license agreements. See the NOTICE file |
|
4 distributed with this work for additional information |
|
5 regarding copyright ownership. The ASF licenses this file |
|
6 to you under the Apache License, Version 2.0 (the |
|
7 "License"); you may not use this file except in compliance |
|
8 with the License. You may obtain a copy of the License at |
|
9 |
|
10 http://www.apache.org/licenses/LICENSE-2.0 |
|
11 |
|
12 Unless required by applicable law or agreed to in writing, |
|
13 software distributed under the License is distributed on an |
|
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|
15 KIND, either express or implied. See the License for the |
|
16 specific language governing permissions and limitations |
|
17 under the License. |
|
18 --> |
|
19 |
|
20 # org.apache.cordova.splashscreen |
|
21 |
|
22 이 플러그인은 표시 하 고 응용 프로그램 실행 하는 동안 시작 화면을 숨깁니다. |
|
23 |
|
24 ## 설치 |
|
25 |
|
26 cordova plugin add org.apache.cordova.splashscreen |
|
27 |
|
28 |
|
29 ## 지원 되는 플랫폼 |
|
30 |
|
31 * 아마존 화재 운영 체제 |
|
32 * 안 드 로이드 |
|
33 * 블랙베리 10 |
|
34 * iOS |
|
35 * Windows Phone 7과 8 |
|
36 * 윈도우 8 |
|
37 |
|
38 ## 메서드 |
|
39 |
|
40 * splashscreen.show |
|
41 * splashscreen.hide |
|
42 |
|
43 ### 안 드 로이드 단점 |
|
44 |
|
45 당신의 config.xml에 다음 환경 설정에 추가 해야 합니다. |
|
46 |
|
47 `<preference name="SplashScreen" value="foo" />` `<preference name="SplashScreenDelay" value="10000" />` |
|
48 |
|
49 여기서 foo splashscreen 파일, 선호 9 패치 파일의 이름입니다. 적절 한 폴더 아래 res/xml 디렉토리에 splashcreen 파일을 추가 해야 합니다. 두 번째 매개 변수는 splashscreen 얼마나 밀리초 단위로 표시 됩니다 나타냅니다. 3000 ms 기본값으로 사용 됩니다. 자세한 내용은 [아이콘 및 시작 화면을][1] 참조 하십시오. |
|
50 |
|
51 [1]: http://cordova.apache.org/docs/en/edge/config_ref_images.md.html |
|
52 |
|
53 ## splashscreen.hide |
|
54 |
|
55 시작 화면을 닫습니다. |
|
56 |
|
57 navigator.splashscreen.hide(); |
|
58 |
|
59 |
|
60 ### 블랙베리 10, WP8, iOS 특질 |
|
61 |
|
62 `config.xml`파일의 `AutoHideSplashScreen` 설정을 해야 합니다 `false` . 2 초 동안 시작 화면을 숨기고 지연에 다음과 같이 타이머 추가 `deviceready` 이벤트 처리기: |
|
63 |
|
64 setTimeout(function() {navigator.splashscreen.hide(); |
|
65 }, 2000); |
|
66 |
|
67 |
|
68 ## splashscreen.show |
|
69 |
|
70 시작 화면을 표시합니다. |
|
71 |
|
72 navigator.splashscreen.show(); |
|
73 |
|
74 |
|
75 응용 프로그램 호출할 수 없습니다 `navigator.splashscreen.show()` 응용 프로그램은 시작 될 때까지 및 `deviceready` 이벤트를 해 고 했다. 하지만 그 스플래시 스크린의 목적 것 같다 일반적으로 시작 화면이 당신의 애플 리 케이 션 시작 하기 전에 표시 될 운명이 다, 이후. 몇 가지 구성을 제공 `config.xml` 자동으로 `show` 시작 화면 응용 프로그램 실행 후 즉시 및 그것은 완벽 하 게 시작 하 고 받은 전에 `deviceready` 이벤트. 이 구성 하 고 자세한 내용은 [아이콘 및 시작 화면을][1] 참조 하십시오. 이러한 이유로, 그것은 가능성이 호출 해야 `navigator.splashscreen.show()` 시작 화면은 응용 프로그램 시작에 대 한 표시 되도록 합니다. |