Touchgui/plugins/org.apache.cordova.splashscreen/doc/ko/index.md

changeset 0
e8ccd40d0ef6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Touchgui/plugins/org.apache.cordova.splashscreen/doc/ko/index.md	Thu Jun 04 14:50:33 2015 +0200
     1.3 @@ -0,0 +1,75 @@
     1.4 +<!---
     1.5 +    Licensed to the Apache Software Foundation (ASF) under one
     1.6 +    or more contributor license agreements.  See the NOTICE file
     1.7 +    distributed with this work for additional information
     1.8 +    regarding copyright ownership.  The ASF licenses this file
     1.9 +    to you under the Apache License, Version 2.0 (the
    1.10 +    "License"); you may not use this file except in compliance
    1.11 +    with the License.  You may obtain a copy of the License at
    1.12 +
    1.13 +      http://www.apache.org/licenses/LICENSE-2.0
    1.14 +
    1.15 +    Unless required by applicable law or agreed to in writing,
    1.16 +    software distributed under the License is distributed on an
    1.17 +    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    1.18 +    KIND, either express or implied.  See the License for the
    1.19 +    specific language governing permissions and limitations
    1.20 +    under the License.
    1.21 +-->
    1.22 +
    1.23 +# org.apache.cordova.splashscreen
    1.24 +
    1.25 +이 플러그인은 표시 하 고 응용 프로그램 실행 하는 동안 시작 화면을 숨깁니다.
    1.26 +
    1.27 +## 설치
    1.28 +
    1.29 +    cordova plugin add org.apache.cordova.splashscreen
    1.30 +    
    1.31 +
    1.32 +## 지원 되는 플랫폼
    1.33 +
    1.34 +*   아마존 화재 운영 체제
    1.35 +*   안 드 로이드
    1.36 +*   블랙베리 10
    1.37 +*   iOS
    1.38 +*   Windows Phone 7과 8
    1.39 +*   윈도우 8
    1.40 +
    1.41 +## 메서드
    1.42 +
    1.43 +*   splashscreen.show
    1.44 +*   splashscreen.hide
    1.45 +
    1.46 +### 안 드 로이드 단점
    1.47 +
    1.48 +당신의 config.xml에 다음 환경 설정에 추가 해야 합니다.
    1.49 +
    1.50 +`<preference name="SplashScreen" value="foo" />` `<preference name="SplashScreenDelay" value="10000" />`
    1.51 +
    1.52 +여기서 foo splashscreen 파일, 선호 9 패치 파일의 이름입니다. 적절 한 폴더 아래 res/xml 디렉토리에 splashcreen 파일을 추가 해야 합니다. 두 번째 매개 변수는 splashscreen 얼마나 밀리초 단위로 표시 됩니다 나타냅니다. 3000 ms 기본값으로 사용 됩니다. 자세한 내용은 [아이콘 및 시작 화면을][1] 참조 하십시오.
    1.53 +
    1.54 + [1]: http://cordova.apache.org/docs/en/edge/config_ref_images.md.html
    1.55 +
    1.56 +## splashscreen.hide
    1.57 +
    1.58 +시작 화면을 닫습니다.
    1.59 +
    1.60 +    navigator.splashscreen.hide();
    1.61 +    
    1.62 +
    1.63 +### 블랙베리 10, WP8, iOS 특질
    1.64 +
    1.65 +`config.xml`파일의 `AutoHideSplashScreen` 설정을 해야 합니다 `false` . 2 초 동안 시작 화면을 숨기고 지연에 다음과 같이 타이머 추가 `deviceready` 이벤트 처리기:
    1.66 +
    1.67 +        setTimeout(function() {navigator.splashscreen.hide();
    1.68 +        }, 2000);
    1.69 +    
    1.70 +
    1.71 +## splashscreen.show
    1.72 +
    1.73 +시작 화면을 표시합니다.
    1.74 +
    1.75 +    navigator.splashscreen.show();
    1.76 +    
    1.77 +
    1.78 +응용 프로그램 호출할 수 없습니다 `navigator.splashscreen.show()` 응용 프로그램은 시작 될 때까지 및 `deviceready` 이벤트를 해 고 했다. 하지만 그 스플래시 스크린의 목적 것 같다 일반적으로 시작 화면이 당신의 애플 리 케이 션 시작 하기 전에 표시 될 운명이 다, 이후. 몇 가지 구성을 제공 `config.xml` 자동으로 `show` 시작 화면 응용 프로그램 실행 후 즉시 및 그것은 완벽 하 게 시작 하 고 받은 전에 `deviceready` 이벤트. 이 구성 하 고 자세한 내용은 [아이콘 및 시작 화면을][1] 참조 하십시오. 이러한 이유로, 그것은 가능성이 호출 해야 `navigator.splashscreen.show()` 시작 화면은 응용 프로그램 시작에 대 한 표시 되도록 합니다.
    1.79 \ No newline at end of file

mercurial