Socket
Socket
Sign inDemoInstall

android-toast

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

android-toast

Native toast for android with python


Maintainers
1

Toast Android

Module that allows you to create a native toast for android with python, this module must be used with pydroid3, kivy and kivymd, you can create a kivy app and use toast_android,This module allows you to change the position of the toast to wherever you want with just passing some parameters, you can also choose the duration of the toast, below you will see an example of use.

Example:

 from androidtoast import toast
 from kivymd.app import MDApp
 from kivy.lang import Builder
 from kivy.uix.screenmanager import ScreenManager
 from kivymd.uix.screen import MDScreen




 Builder.load_string('''
 <Example>

     MDFlatButton:
         text:"My Toast"
         pos_hint:{"center_x": .5, "center_y": .05}
         on_press:root.show_toast()
 ''')


 class Example(MDScreen):     
     def show_toast(self):
         toast("hello world", True, 80, 200, 0) 



 class Iniciar(MDApp):     
     def build(self):
         pantalla = ScreenManager()
         screen = Example(name="one")
         pantalla.add_widget(screen)
         return pantalla

 Iniciar().run() 

Indications:

"""
    :param text: text to be displayed in the toast;
    :param short_duration:  duration of the toast, if `True` the toast
           will last 2.3s but if it is `False` the toast will last 3.9s;
    :param gravity: refers to the toast position, if it is 80the toast will
           be shown below, if it is 40 the toast will be displayed above;
    :param y: refers to the vertical position of the toast;
    :param x: refers to the horizontal position of the toast;

    Important: if only the text value is specified and the value of
    the `gravity`, `y`, `x` parameters is not specified, their values ​​will
    be 0 which means that the toast will be shown in the center.
    """

This example can be used in Pydroid3 and in a kivy / kivymd app

installation:

pip3 install android-toast

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc