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.1 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. Questo plugin Visualizza e nasconde una schermata iniziale durante l'avvio dell'applicazione.
  19. ## Installazione
  20. cordova plugin add cordova-plugin-splashscreen
  21. ## Piattaforme supportate
  22. * Amazon fuoco OS
  23. * Android
  24. * BlackBerry 10
  25. * iOS
  26. * Windows Phone 7 e 8
  27. * Windows 8
  28. ## Metodi
  29. * splashscreen
  30. * splashscreen.Hide
  31. ### Stranezze Android
  32. Nel vostro config. xml, è necessario aggiungere le seguenti preferenze:
  33. <preference name="SplashScreen" value="foo" />
  34. <preference name="SplashScreenDelay" value="10000" />
  35. Dove foo è il nome del file splashscreen, preferibilmente un file 9 patch. Assicurati di aggiungere i tuoi file splashcreen res/xml nella directory sotto cartelle appropriate. Il secondo parametro rappresenta quanto tempo lo splashscreen apparirà in millisecondi. Il valore predefinito è 3000 ms. Per ulteriori informazioni, vedere [icone e schermate iniziali][1].
  36. [1]: http://cordova.apache.org/docs/en/edge/config_ref_images.md.html
  37. ## splashscreen.Hide
  38. Respingere la schermata iniziale.
  39. navigator.splashscreen.hide();
  40. ### BlackBerry 10, WP8, iOS Quirk
  41. Impostazione `AutoHideSplashScreen` del file `config.xml` deve essere `false`. Per ritardare nascondendo la schermata iniziale per due secondi, aggiungere un timer ad esempio nel gestore eventi `deviceready`:
  42. setTimeout(function() {
  43. navigator.splashscreen.hide();
  44. }, 2000);
  45. ## splashscreen
  46. Visualizza la schermata iniziale.
  47. navigator.splashscreen.show();
  48. L'applicazione non può chiamare `navigator.splashscreen.show()` fino a quando l'app ha iniziato e ha generato l'evento `deviceready`. Ma poiché in genere la schermata iniziale è destinata ad essere visibile prima app ha iniziato, che sembrerebbe per sconfiggere lo scopo della schermata iniziale. Fornendo qualche configurazione nel `file config.xml` sarà automaticamente `show` il tonfo schermo subito dopo il lancio dell'app e prima che completamente ha iniziato e ha ricevuto l'evento `deviceready`. Per ulteriori informazioni su facendo questa configurazione, vedere [icone e schermate iniziali][1]. Per questo motivo, è improbabile che dovete chiamare `navigator.splashscreen.show()` per rendere la schermata visibile per avvio di app.