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