Kivy es una herramienta GUI independiente de la plataforma en Python. Como se puede ejecutar en Android, IOS, Linux y Windows, etc. Básicamente se usa para desarrollar la aplicación de Android, pero eso no significa que no se pueda usar en aplicaciones de escritorio.
Widget emergente:
Para usar la ventana emergente, debe importar:
from kivy.uix.popup import Popup
El widget Popup se utiliza para crear ventanas emergentes. De forma predeterminada, la ventana emergente cubrirá toda la ventana «principal». Cuando está creando una ventana emergente, debe al menos configurar un Popup.title y Popup.content.
Tenga en cuenta que el tamaño predeterminado de un widget es size_hint=(1, 1). Si no desea que su ventana emergente esté en pantalla completa, debe proporcionar sugerencias de tamaño con valores inferiores a 1 (por ejemplo, size_hint=(.8, .8)) o desactivar size_hint y usar atributos de tamaño fijo.
Nota: Popup es un widget especial. No intente agregarlo como elemento secundario a ningún otro widget. Si lo hace, la ventana emergente se manejará como un widget ordinario y no se creará oculto en segundo plano, como:
Python3
BoxLayout: MyPopup: # bad !
Enfoque básico:
1) import kivy 2) import kivyApp 3) import Widget 4) import Floatlayout 5) import Label 6) import popup 7) Set minimum version(optional) 8) Create widget class 9) Create Layout class : 10) create App class 9) create .kv file (name same as the app class): 1) create Widget 2) create popup 3) Give label to popup 4) create button to close popup 10) return Layout/widget/Class(according to requirement) 11) define popup function(Which shows the popup on press the button) 12) Run an instance of the class
Implementación del Enfoque:
archivo emergente.py
Python3
# Kivy example for the Popup widget # Program to Show how to create a switch # import kivy module import kivy # base Class of your App inherits from the App class. # app:always refers to the instance of your application from kivy.app import App # this restrict the kivy version i.e # below this kivy version you cannot # use the app or software kivy.require('1.9.0') # Widgets are elements of a graphical user # interface that form part of the User Experience. from kivy.uix.widget import Widget # The Label widget is for rendering text. from kivy.uix.label import Label # module consist the floatlayout # to work with FloatLayout first # you have to import it from kivy.uix.floatlayout import FloatLayout # Popup widget is used to create popups. # By default, the popup will cover # the whole “parent” window. # When you are creating a popup, # you must at least set a Popup.title and Popup.content. from kivy.uix.popup import Popup # Creating a widget class # through this we add button # the commands of the class is in .kv file class Widgets(Widget): def btn(self): # calling of the show popup function show_popup() # Popup class is defined # The command of the class is in .kv file class Popups(FloatLayout): pass # create App class class MyApp(App): def build(self): # return the widget return Widgets() # define popup function in this we create the popup def show_popup(): show = Popups() popupWindow = Popup(title ="Popup Window", content = show, size_hint =(None, None), size =(200, 200)) # open popup window popupWindow.open() # Attach close button press with popup.dismiss action # content.bind(on_press = popup.dismiss) # run the App if __name__ == "__main__": MyApp().run()
Implementación del archivo .kv :
Python3
# .kv file of the popup code # Adding Button widget <Widgets>: Button: text: "Press me" on_release: root.btn() # Adding Label, Button to popup <Popups>: Label: text: "You pressed the button" size_hint: 0.6, 0.2 pos_hint: {"x":0.2, "top":1} Button: text: "Close the popup" # set size of the button size_hint: 1, 0.4 # set position of the button pos_hint: {"x":0, "y":0.1}
Producción:
Cuando aparezca la ventana emergente al presionar un botón, haga clic en cualquier parte de la ventana, excepto que la ventana emergente desaparecerá:
Publicación traducida automáticamente
Artículo escrito por YashKhandelwal8 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA