Kivy is an open source software library for rapid development of applications equipped with novel user interfaces, such as multi-touch apps.
14
votes
3answers
6k views
Kivy for Android apps
I've just started diving into the Android world. I have a lot of experience programming apps in Python, so I've searching for a good combination "Android + Python", and I think I've found it: Kivy.
I ...
9
votes
1answer
4k views
Looking for Kivy Tutorials
I cant find any tutorials besides the pong tutorial on their website. Are their any more out there?
6
votes
3answers
3k views
Kivy, Eclipse and PyDev (also PyPy)
According to this post: https://groups.google.com/forum/?fromgroups#!topic/kivy-users/n7c3thksnzg, it is possible to use Eclipse as an IDE for Kivy through PyDev. However, I didn't understand the ...
6
votes
2answers
612 views
Can't install Kivy: Cython/GCC error
so I tried to install Kivy following the instructions from the official site:
$ sudo apt-get install python-setuptools python-pygame python-opengl \
python-gst0.10 python-enchant ...
5
votes
1answer
201 views
Kivy: crossplatform notification icon
I want to create a cross-platform application (Ubuntu and Android) with a notification icon. Is there a standard way to create such an app using Kivy?
3
votes
2answers
204 views
Kivy hello world not working
I am trying to make kivy work on my Ubuntu system. I followed the instructions from their wesbite.
But when I try to run the following hello world code from their website:
import kivy
...
3
votes
1answer
372 views
Load image from memory in Kivy
I have a picture in memory a format (output from pyplot) and I want to directly show it on the Android through Kivy, but I don't want to create a picture file. Is there any way to do this? On pyplot ...
3
votes
2answers
97 views
How to get kivy lines to be drawn consistently
I'm trying to draw a simple "X" in the middle of a button. I've put in the following drawing code:
width, height = self.size
x, y = self.pos
x1, x2 = x + int(width*0.3), x + ...
3
votes
1answer
602 views
How to implement ScrollView in Python/Kivy
I have made some code to display some content in Python/Kivy, and it seems I didnt write the ScrollView good.
I have tried some variations in the program but the program doesnt display the scrollbar.
...
3
votes
0answers
86 views
How to modify the screen resolution on Kivy-iOS
I'm working on an app using the python/Kivy-iOS toolchain. For some reason, when I build to the iPhone5, the app doesn't run fullscreen (there's letterboxing at the top and bottom, see attached ...
2
votes
2answers
180 views
Kivy button text alignment issue
I am trying to develop an email application in Kivy, basically just as an exercise to learn the in's and out's of the framework... I am trying to create the initial window and have reached a bit of a ...
2
votes
1answer
418 views
How do I create a project in kivy running on android?
I'm trying to understand kivy. After installation, launching kivy, I got a message saying I should create a project first in /mny/sdcard/kivy. The folder didn't exist so I created it via FTP ...
2
votes
2answers
256 views
Switching kivy widgets
I am using the Kivy python library.
I have two widgets defined.
When the program runs, I run the first widget.
When that widgets button is pressed, I want it to dissapear and be replaced with the ...
2
votes
3answers
178 views
Increasing sprite position incrementally very fast without lag - Python
I'm making a PONG game for a school project using Kivy in Python. So far thanks to this forum I've made myself some AI for the NPC paddle.
This is the code:
if self.ball.y < ...
2
votes
1answer
159 views
Drawing SVG on Kivy canvas
I am new to Kivy.
i need to create a classic analog clock.
My Question is: how to draw svg graphics into kivy canvas?
2
votes
1answer
492 views
How to read/write file as root using Kivy for Android?
I would like to write to /etc/hosts in my Kivy app, and I've surely a rooted device to test. I tried several ways but always get my app exit without any warning or error.
I've tried:
...
2
votes
2answers
252 views
how to integrate two apps (mainloop) together in python
hi i am working on a VR engine "vizard" it has (like any other game engine) its mainloop, i want to integrate it with a multi-touch framework "kivy" which has its own mainloop , is it possible to do ...
2
votes
1answer
228 views
No Android SDK environment set for Kivy in Ubuntu 12.04
I've written a game for Android using Python and Kivy. I have downloaded android-sdk-linux and added its path to .bashrc. I've also cloned the python-for-android project to create an apk package of my ...
2
votes
1answer
158 views
Python - Kivy framework - Spinner values list
I'm having tough times adding list of values (languages) that I extract from my db and want it to be available as a values list in Spinner widget.
python part:
def get_langs(self):
session ...
2
votes
2answers
504 views
Kivy installation does not find GL/gl.h?
i just wanted to install kivy to test it and make some apps
i installed cython and the other things
then i typed into the terminal (ubuntu 12.04):
sudo easy_install kivy
as answer i got this:
...
2
votes
0answers
196 views
DLL Load Failed when running kivy pong tutorial
I have been trying to learn python and create a small application using kivy to become introduced to kivy python apps. But I cannot even get the pong tutorial that comes with the standard kivy ...
2
votes
0answers
688 views
Kivy vs pygame subset for android for games [closed]
Which of the frameworks would fit best for making games for android?
1
vote
3answers
132 views
Pros and Cons for HaXe and Kivy
I'm looking to develop an application for iOS, Android, Windows Phone and for Desktop no matter if it's web or standalone. Does anyone have experience with HaXe + NME or Kivy that they can share in ...
1
vote
2answers
723 views
How do I change the color of my widget in Kivy at run time?
I'm having trouble changing the color of a simple widget in Kivy.
I can set the color when I create the widget, but I can't change it afterwards.
Here is the simple layout definition file ...
1
vote
2answers
809 views
Use bluetooth in Android app coded using python
I know there are various tools for creating android apps using python eg python-for-android, android-scripting-evrironment, SL4A etc.
What I need to know is which of these would be helpful if I need ...
1
vote
1answer
644 views
Understanding widgets in Kivy
I'm a newbie programmer and am currently learning python with kivy as a GUI platform.
I am reading the kivy manual and was working on widgets. I wanted to try some stuff on the tutorial painter ...
1
vote
1answer
122 views
Kivy Screen manager reference in kv language
I'm trying to make a main menu that lets me switch Screens when I click a button, but I can't figure out how to reference the manager from the button.
I have a setup for a main menu page (in kv ...
1
vote
1answer
268 views
why does right-clicking create an orange dot in the center of the circle?
Why does the first widget example in kivy lead to an orange circle in the middle of the yellow one when you right click on the canvas and a pure yellow one when you left click?
from kivy.app ...
1
vote
1answer
69 views
TreeView in a ScrollView in Kivy - No Scroll
I'm working on a kivy app that pulls data from an sqlite3 database and populates a TreeView with it. The TreeView becomes too large to fit on my screen when I expand a few of the groups so I want to ...
1
vote
1answer
81 views
Kivy ScrollView+Accordion Error
I have this code. If I increase the number of Accordion items past a certain amount the app goes haywire. The gridLayout version (commented out) works as expected. The offending region is between HERE ...
1
vote
1answer
95 views
Python, Circular Dependencies, and Singletons
I've dug myself into quite a hole here.
I'm working on a Python/Kivy app in PyDev.
The app runs off of many systems (about 10), so I shoved them into an engine to handle everything.
For ease of ...
1
vote
1answer
208 views
Kivy Date Picker Widget
[SOLVED] Please see below for application of accepted answer and source code for functioning kivy DatePicker widget.
I've been learning Kivy and decided to make a date picker widgets as a learning ...
1
vote
1answer
507 views
How can I use GridLayout in Kivy?
I want to use simple grid layout in my kivy program, but I don't appropriate example;
here is my code:
import kivy
from kivy.uix.gridlayout import GridLayout
from kivy.app import App
from ...
1
vote
1answer
132 views
Kivy-Python with a database
I want to buid an app with Kivy/Python, but I don't know how is the connection between Kivy and MySQL. Is it like with just python?
Sorry, if this question is inapropriate.
1
vote
1answer
175 views
Video Recording on Android Using Kivy (Python)
I am trying to record video through Kivy (http://kivy.org/#home) and am not sure what direction or libraries to use.
Currently I have the camera widget working with the code below, which gets the ...
1
vote
1answer
502 views
Custom syntax highlighting in Geany
I am trying to create custom syntax highlighting for Kivy '.kv' files in the Geany editor. Although the specific filetype seems irrelavant to the issue I'm having, as any efforts I make at getting ...
1
vote
1answer
68 views
Pros and Cons on designing a calculator with eval
I'm making a calculator for android using kivy and it's almost done (cannot use java becasue python is the only language I know). The way it works is, the user inputs an expression and eval is used to ...
1
vote
1answer
223 views
kivy ScrollView implementation in TextInput
I have a function (shown below) where I'm using a popup and TextInput to display some text and in most cases the text content is larger than the popup window and hence the need for scrolling. Without ...
1
vote
1answer
136 views
How to allow infinite integer values in a spinner?
I need a Spinner widget in which the user can select integer values with a certain step and without lower or upper limits
(I mean, they should be at least in the billion range, so no chance of ...
1
vote
1answer
172 views
Kivy Unable to connect on_enter callback in kv language
I've recently started learning Kivy and using it. Today I've come across a problem that I'm not sure if it's a bug in Kivy or a misunderstanding from my behalf. This is a simplified version.
I was ...
1
vote
1answer
395 views
Kivy - editing label when button clicked
I wish button1 to edit Label 'etykietka' when clicked, but i don't know how. Have you got some ideas?
class Zastepstwa (App):
def build(self):
lista=WebOps().getList()
layout = ...
1
vote
1answer
319 views
Tab/Enter (and other keystrokes) handling in Kivy's TextInput widgets
I'm writing an app using Kivy framework and I stumbled upon a minor but annoying problem: I don't know how to handle Tab/Enter/Arrow keys in text fields so that pressing either of them would dispatch ...
1
vote
1answer
260 views
Kivy refresh image
I have an an image (kivy.uix.image.Image) instantiated with a source, but I change the source file's data. How can I refresh the image to reflect the new data?
1
vote
1answer
46 views
error: video system not initialized (kivy, ipython)
I created following ipython_config.py script for IPython:
c = get_config()
c.TerminalInteractiveShell.editor = 'C:\PROGRA~2\NOTEPA~1\NOTEPA~1.exe'
Now when I %edit some file I get rather unwanted ...
1
vote
2answers
149 views
Accessing Android camera through Kivy
Please i am looking for a work around to get access Android camera through kivy, or a library that i can integrate with kivy in order to access the Camera.
I am developing an application for android ...
1
vote
0answers
59 views
Is there a pre-made solution for distributed messaging in a python/kivy app?
For example, a program like rabbitMQ. But I want to be able to include it in my compiled package that goes out. That way, there are no special requirements for setup outside just running my .exe or ...
1
vote
3answers
217 views
How could I render mathematical expressions using Kivy?
I am in the process of making a calculator using Kivy and wanted to do something that resembles the natural textbook display found in a few Casio calculators ...
1
vote
1answer
282 views
Kivy - Making a button/thumbnail with URL image as background
I have started working with Kivy recently and have encountered a problem. I need to make a button/thumbnail with a URL image as background. I got some help on the Kivy user forum here ...
1
vote
0answers
214 views
kivy video streaming
I'm new to Kivy and looking to stream video to a display I'm making. I'm streaming the video from an external camera, so I'll only have it's IP address, and it won't be directly connected to the ...
0
votes
4answers
531 views
Kivy / Python-for-android : Build.py fails to build an android package apk
I try for many days to build a simple android package using kivy and python for android. Unfortunately, I've spent many hours trying to solve all the issues but I still cannot do it. I hope you guys ...
