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

Thu, 04 Jun 2015 14:50:33 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Jun 2015 14:50:33 +0200
changeset 0
e8ccd40d0ef6
permissions
-rw-r--r--

Genesis of lecture sources for Droidcon Berlin 2015 in Postbahnhof.

     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
    10       http://www.apache.org/licenses/LICENSE-2.0
    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 -->
    20 # org.apache.cordova.dialogs
    22 이 플러그인 몇 가지 기본 대화 상자 UI 요소에 액세스할 수 있습니다.
    24 ## 설치
    26     cordova plugin add org.apache.cordova.dialogs
    29 ## 메서드
    31 *   `navigator.notification.alert`
    32 *   `navigator.notification.confirm`
    33 *   `navigator.notification.prompt`
    34 *   `navigator.notification.beep`
    36 ## navigator.notification.alert
    38 사용자 지정 경고 또는 대화 상자를 보여 줍니다. 이 기능에 대 한 기본 대화 상자를 사용 하는 대부분의 코르도바 구현 하지만 일부 플랫폼 사용 브라우저의 `alert` 함수는 일반적으로 덜 사용자 정의할 수 있습니다.
    40     navigator.notification.alert(message, alertCallback, [title], [buttonName])
    43 *   **메시지**: 대화 메시지. *(문자열)*
    45 *   **alertCallback**: 콜백을 호출할 때 경고 대화 기 각. *(기능)*
    47 *   **제목**: 제목 대화 상자. *(문자열)* (옵션, 기본값:`Alert`)
    49 *   **buttonName**: 단추 이름. *(문자열)* (옵션, 기본값:`OK`)
    51 ### 예를 들어
    53     function alertDismissed() {
    54         // do something
    55     }
    57     navigator.notification.alert(
    58         'You are the winner!',  // message
    59         alertDismissed,         // callback
    60         'Game Over',            // title
    61         'Done'                  // buttonName
    62     );
    65 ### 지원 되는 플랫폼
    67 *   아마존 화재 운영 체제
    68 *   안 드 로이드
    69 *   블랙베리 10
    70 *   Firefox 운영 체제
    71 *   iOS
    72 *   Tizen
    73 *   Windows Phone 7과 8
    74 *   윈도우 8
    76 ### Windows Phone 7, 8 특수
    78 *   아니 내장 브라우저 경고 하지만 다음과 같이 전화를 바인딩할 수 있습니다 `alert()` 전역 범위에서:
    80         window.alert = navigator.notification.alert;
    83 *   둘 다 `alert` 와 `confirm` 는 비차단 호출, 결과 비동기적으로 사용할 수 있습니다.
    85 ### 파이어 폭스 OS 단점:
    87 두 기본 차단 `window.alert()` 및 비차단 `navigator.notification.alert()` 사용할 수 있습니다.
    89 ## navigator.notification.confirm
    91 사용자 정의 확인 대화 상자가 표시 됩니다.
    93     navigator.notification.confirm(message, confirmCallback, [title], [buttonLabels])
    96 *   **메시지**: 대화 메시지. *(문자열)*
    98 *   **confirmCallback**: 인덱스 버튼 (1, 2 또는 3) 또는 대화 상자 버튼을 누르면 (0) 없이 기 각 될 때 호출할 콜백 합니다. *(기능)*
   100 *   **제목**: 제목 대화 상자. *(문자열)* (옵션, 기본값:`Confirm`)
   102 *   **buttonLabels**: 단추 레이블을 지정 하는 문자열 배열입니다. *(배열)* (옵션, 기본값은 [ `OK,Cancel` ])
   104 ### confirmCallback
   106 `confirmCallback`사용자가 확인 대화 상자에서 단추 중 하나를 누를 때 실행 됩니다.
   108 콜백 인수 `buttonIndex` *(번호)를*누르면된 버튼의 인덱스입니다. 참고 인덱스에서는 인덱스 1부터 값은 `1` , `2` , `3` , 등등.
   110 ### 예를 들어
   112     function onConfirm(buttonIndex) {
   113         alert('You selected button ' + buttonIndex);
   114     }
   116     navigator.notification.confirm(
   117         'You are the winner!', // message
   118          onConfirm,            // callback to invoke with index of button pressed
   119         'Game Over',           // title
   120         ['Restart','Exit']     // buttonLabels
   121     );
   124 ### 지원 되는 플랫폼
   126 *   아마존 화재 운영 체제
   127 *   안 드 로이드
   128 *   블랙베리 10
   129 *   Firefox 운영 체제
   130 *   iOS
   131 *   Tizen
   132 *   Windows Phone 7과 8
   133 *   윈도우 8
   135 ### Windows Phone 7, 8 특수
   137 *   에 대 한 기본 제공 브라우저 함수가 `window.confirm` , 그러나 할당 하 여 바인딩할 수 있습니다:
   139         window.confirm = navigator.notification.confirm;
   142 *   호출 `alert` 및 `confirm` 되므로 차단 되지 않은 결과만 비동기적으로 사용할 수 있습니다.
   144 ### 파이어 폭스 OS 단점:
   146 두 기본 차단 `window.confirm()` 및 비차단 `navigator.notification.confirm()` 사용할 수 있습니다.
   148 ## navigator.notification.prompt
   150 브라우저의 보다 더 많은 사용자 정의 기본 대화 상자 표시 `prompt` 기능.
   152     navigator.notification.prompt(message, promptCallback, [title], [buttonLabels], [defaultText])
   155 *   **메시지**: 대화 메시지. *(문자열)*
   157 *   **promptCallback**: 인덱스 버튼 (1, 2 또는 3) 또는 대화 상자 버튼을 누르면 (0) 없이 기 각 될 때 호출할 콜백 합니다. *(기능)*
   159 *   **제목**: 제목 *(문자열)* (옵션, 기본값 대화 상자`Prompt`)
   161 *   **buttonLabels**: 단추를 지정 하는 문자열의 배열 *(배열)* (옵션, 기본값은 레이블`["OK","Cancel"]`)
   163 *   **defaultText**: 기본 텍스트 상자 입력 값 ( `String` ) (옵션, 기본값: 빈 문자열)
   165 ### promptCallback
   167 `promptCallback`사용자가 프롬프트 대화 상자에서 단추 중 하나를 누를 때 실행 됩니다. `results`콜백에 전달 된 개체에는 다음 속성이 포함 되어 있습니다:
   169 *   **buttonIndex**: 눌려진된 버튼의 인덱스. *(수)* 참고 인덱스에서는 인덱스 1부터 값은 `1` , `2` , `3` , 등등.
   171 *   **input1**: 프롬프트 대화 상자에 입력 한 텍스트. *(문자열)*
   173 ### 예를 들어
   175     function onPrompt(results) {
   176         alert("You selected button number " + results.buttonIndex + " and entered " + results.input1);
   177     }
   179     navigator.notification.prompt(
   180         'Please enter your name',  // message
   181         onPrompt,                  // callback to invoke
   182         'Registration',            // title
   183         ['Ok','Exit'],             // buttonLabels
   184         'Jane Doe'                 // defaultText
   185     );
   188 ### 지원 되는 플랫폼
   190 *   아마존 화재 운영 체제
   191 *   안 드 로이드
   192 *   Firefox 운영 체제
   193 *   iOS
   194 *   Windows Phone 7과 8
   196 ### 안 드 로이드 단점
   198 *   안 드 로이드 최대 3 개의 단추를 지원 하 고 그것 보다는 더 이상 무시 합니다.
   200 *   안 드 로이드 3.0 및 나중에, 단추는 홀로 테마를 사용 하는 장치에 대 한 반대 순서로 표시 됩니다.
   202 ### 파이어 폭스 OS 단점:
   204 두 기본 차단 `window.prompt()` 및 비차단 `navigator.notification.prompt()` 사용할 수 있습니다.
   206 ## navigator.notification.beep
   208 장치는 경고음 소리를 재생 합니다.
   210     navigator.notification.beep(times);
   213 *   **시간**: 경고음을 반복 하는 횟수. *(수)*
   215 ### 예를 들어
   217     // Beep twice!
   218     navigator.notification.beep(2);
   221 ### 지원 되는 플랫폼
   223 *   아마존 화재 운영 체제
   224 *   안 드 로이드
   225 *   블랙베리 10
   226 *   iOS
   227 *   Tizen
   228 *   Windows Phone 7과 8
   229 *   윈도우 8
   231 ### 아마존 화재 OS 단점
   233 *   아마존 화재 운영 체제 기본 **설정/디스플레이 및 사운드** 패널에 지정 된 **알림 소리** 재생 됩니다.
   235 ### 안 드 로이드 단점
   237 *   안 드 로이드 기본 **알림 벨소리** **설정/사운드 및 디스플레이** 패널에서 지정 합니다.
   239 ### Windows Phone 7, 8 특수
   241 *   코르 도우 바 분포에서 일반 경고음 파일에 의존합니다.
   243 ### Tizen 특수
   245 *   Tizen은 미디어 API 통해 오디오 파일을 재생 하 여 경고음을 구현 합니다.
   247 *   경고음 파일에 위치 해야 합니다, 짧은 해야 한 `sounds` 응용 프로그램의 루트 디렉터리의 하위 디렉터리 명명 해야 합니다`beep.wav`.

mercurial