kivy Questions

3

Solved

Is it possible to use python and/or kivy to send local notifications on ios? Really it does not have to vibrate, just a number icon and maybe a real-time message would work. Edit: Looking at the ...
Eaves asked 22/4, 2014 at 12:5

2

I recently ported an installer from an unmaintainable and complicated batch script to python and thought it would be a nice idea to have a neat graphical front end for the console installer. I deci...
Normi asked 7/12, 2018 at 14:57

3

Solved

I have a simple a Kivy interface that also uses the terminal. Example code: import kivy kivy.require('1.0.6') from kivy.app import App from kivy.uix.label import Label class MyApp(App): def ...
Cherise asked 12/5, 2018 at 17:7

5

Solved

In Kivy language, it is possible to refer to the root widget with something like <RootWidget>: BoxLayout: SomeButton: on_press: print root but trying to access root from Python is impo...
Olinger asked 23/8, 2015 at 0:53

14

Solved

When trying to deploy a Kivy App using PyInstaller, I am getting Permission Denied errors even when using and Administrator CMD. The folder has all open editing options for every user. Python has f...
Partitive asked 10/8, 2018 at 2:46

2

Solved

I want to create GridLayout in Kivy with many rectangle buttons with some custom images with different size. To do so, I want to scale image (the way I wan to do this is shown below) and then crop/...
Olivaolivaceous asked 23/5, 2013 at 20:7

6

Solved

How can I make a link that opens a web browser in Kivy? I've tried just putting the url in a label, but of course that doesn't work. I'd like it to work on the android app specifically and allow us...
Ultimogeniture asked 13/3, 2014 at 17:10

3

Solved

I'm writing kivy app and resently I faced with a problem of unlimited inputing text in TextInput widget. Is there any solution to this problem?
Salad asked 25/2, 2018 at 17:40

3

Solved

I know how to make a color background but i can't seem to find anything useful for setting the image as a background and would be really grateful for any help with my code. Here is my .py file: f...
Chiang asked 2/7, 2015 at 8:18

1

I am experimenting with the sample code in the kivy_examples package. On a Macbook Pro with a Retina display, that is also connected to an external monitor with standard pixel density. When I launc...
Rosati asked 21/6, 2021 at 18:50

2

Solved

I want to scale a text inside a button or label based on the window height, but limited by window width. The following works: font_size: self.height - dp(15) However the text can exceed the widt...
Doralyn asked 19/7, 2015 at 17:40

3

I did all the whole process to install Kivy... python -m pip install --upgrade pip wheel setuptools python -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew python -m pip ins...
Parachute asked 7/11, 2022 at 5:51

2

Solved

I am trying to do the same as I did to add these widgets, but without success. I am working with the kv language and bind function. With this code below is possible add a buttons dynamically, but i...
Northward asked 20/7, 2016 at 21:25

2

Solved

I'm having problems in my Python application with Kivy library. In particular I'm trying to create a scrollable list of elements in a TabbedPanelItem, but I don't know why my list doesn't scroll. ...
Salliesallow asked 14/9, 2016 at 12:3

3

Solved

I have a flask app serving as a server and I have a kivy app serving as a front end to a server. How can I run flask and then kivy app so they work together at the same time? Flask app: from flas...
Teryn asked 17/4, 2018 at 17:53

4

Solved

I'm new to Kivy and having trouble specifying the background color of a Button. Here's my simple example: # custombutton.py from kivy.app import App from kivy.uix.widget import Widget class MyW...
Larcener asked 24/11, 2013 at 21:28

4

Solved

I am trying to create an apk file from bulldozer in Linux, but every time I receive this error that cython is not found. Although I tried installing it, I found the whole internet but didn't get th...
Brenza asked 6/4, 2021 at 17:40

3

Solved

I am working on a Kivy project, and I need to display a label when there is no elements in a list. Otherwise, I need to display a list view. These are the two scenarios I am describing: When no f...
Footie asked 1/2, 2017 at 17:8

3

I know we can launch an app in Android using Kivy launcher for android https://play.google.com/store/apps/details?id=org.kivy.pygame and i can launch apps by the same as well . But i need to know ...
Coumarone asked 29/3, 2014 at 16:55

3

Solved

I'd like to have an app with black buttons and labels, and with white text, and thus, would like to have white space separating these widgets. I suppose that in order to do so, it would be necessar...
Arnettaarnette asked 1/1, 2014 at 19:56

3

Solved

while I was trying to build,push and automatically run the apk on my device using buildozer android debug deploy run it shows these errors: # Check configuration tokens # Ensure build layout # ...
Jenette asked 16/3, 2015 at 8:40

3

Solved

I follwed this stackoverflow question, but neither alternatives worked. This is my code: from kivy.app import App from kivy.uix.label import Label from kivy.core.window import Window class MyApp...
Pharmacognosy asked 3/5, 2016 at 5:21

3

I introduce a Spinner in my widget, and I want to perform some action every time I chose a different value from it. Is it possible? I only seem to get events on_press and on_release, but they are...
Compote asked 30/7, 2015 at 10:31

5

Solved

This doesn't work: $ kivy --version Python 2.7.6 I've got Kivy.app installed, and it doesn't provide any version info either.
Ragucci asked 20/12, 2015 at 23:56

6

Solved

Does anyone know how Kivy renders text in different fonts? I have labels with text at 16sp. On a tablets with screen sizes (1024, 552) and (2048, 1536) it works perfectly (width/height ratios 1.8...
Radiophotograph asked 16/6, 2016 at 11:4

© 2022 - 2025 — McMap. All rights reserved.