You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
3.6 KiB

7 years ago
  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. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing,
  11. software distributed under the License is distributed on an
  12. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  13. KIND, either express or implied. See the License for the
  14. specific language governing permissions and limitations
  15. under the License.
  16. -->
  17. # cordova-plugin-splashscreen
  18. このプラグインが表示され、アプリケーションの起動中にスプラッシュ スクリーンを非表示にします。
  19. ## インストール
  20. cordova plugin add cordova-plugin-splashscreen
  21. ## サポートされているプラットフォーム
  22. * アマゾン火 OS
  23. * アンドロイド
  24. * ブラックベリー 10
  25. * iOS
  26. * Windows Phone 7 と 8
  27. * Windows 8
  28. ## メソッド
  29. * splashscreen.show
  30. * splashscreen.hide
  31. ### Android の癖
  32. あなたの config.xml を以下の設定を追加する必要があります。
  33. <preference name="SplashScreen" value="foo" />
  34. <preference name="SplashScreenDelay" value="10000" />
  35. Foo ができれば 9 パッチファイル splashscreen ファイルの名前です。 解像度/xml ディレクトリの適切なフォルダーの下に splashcreen ファイルを追加することを確認します。 2 番目のパラメーターは、スプラッシュ ・ スクリーンがの表示時間 (ミリ秒単位) を表します。 デフォルトでは 3000 ミリ秒です。 詳細については、[アイコンとスプラッシュ画面][1] を参照してください。
  36. [1]: http://cordova.apache.org/docs/en/edge/config_ref_images.md.html
  37. ## splashscreen.hide
  38. スプラッシュ スクリーンを閉じます。
  39. navigator.splashscreen.hide();
  40. ### ブラックベリー 10、WP8、iOS の気まぐれ
  41. `config.xml` ファイルの `AutoHideSplashScreen` の設定は `false` である必要があります。 遅延を 2 秒間スプラッシュ スクリーンを非表示に `deviceready` イベント ハンドラーで、次のようタイマーを追加します。
  42. setTimeout(function() {
  43. navigator.splashscreen.hide();
  44. }, 2000);
  45. ## splashscreen.show
  46. スプラッシュ画面が表示されます。
  47. navigator.splashscreen.show();
  48. アプリが開始され、`deviceready` イベントが発生するまで、アプリケーションは `navigator.splashscreen.show()` を呼び出すことはできません。 しかし、以来、通常スプラッシュ画面アプリ開始前に表示するものですと思われる、スプラッシュ スクリーンの目的の敗北します。 `config.xml` にいくつかの構成を提供するは自動的に `表示` スプラッシュ画面、アプリを起動後すぐに、それが完全に起動し、`deviceready` イベントを受信する前に。 詳細についてはこの構成を行うには、[アイコンとスプラッシュ画面][1] を参照してください。 この理由のためにアプリ起動時のスプラッシュ スクリーンを確認 `navigator.splashscreen.show()` をコールする必要がある可能性が高いです。