Kivy is an open source software library for rapid development of applications equipped with novel user interfaces, such as multi-touch apps.
0
votes
2answers
1k views
Python cannot import name <class>
I've been wrestling most of the night trying to solve an import error.
This is a common issue, but no previous question quite answers my issue.
I am using PyDev (an Eclipse plugin), and the library ...
0
votes
2answers
489 views
Python Kivy in Eclipse IDE on Mac
I am trying to use the Kivy library for python in the Eclipse IDE. I have tried some solutions that I have found on google but none of them seem to work. I am using Mac OSX 10.7 with python 2.7.
I ...
1
vote
1answer
295 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 ...
0
votes
1answer
27 views
Non breaking spaces in RstDocument in Kivy
Is there any chance to perform non breaking spaces in RstDocument?
I need move one letter words to next line if this word is on the end of line.
I tried define Substitution:
.. |nbsp| unicode:: ...
0
votes
1answer
81 views
Android Audio API in Python
I am trying to write a metronome application in Python, and I intend to publish the application for Android and iOS. I have found a few cross-platform frameworks like Kivy, but their audio support is ...
0
votes
1answer
75 views
How to create simple Kivy app (form with field name)
How to create simple Kivy app?
If user type text into field "Name" using keyboard like on android
phone, this name is display
I need this to learn
0
votes
1answer
219 views
How to Populate a Kivy Tree View from an sqlite Table
What I Have
I have an sqlite database with two tables. The first has 42 items with fields such as typeID, typeName, description, maxPrice, and groupID, of which there are 4 different groupIDs. Then ...
0
votes
1answer
251 views
Kivy layout problems when adding and clearing Widgets
While using the widget commands add_widget and clear_widgets, I am getting my widgets, which look fine by themselves, to be incredibly tiny on the bottom left corner of the screen.
I'm going to ...
0
votes
1answer
169 views
Can't draw in Clock Callback in Kivy
I'm using the nifty Kivy framework to program a game for Android.
I'm trying to create a clock callback to run a specified piece of code (used to draw) 60 times a second.
For some reason, anything I ...
2
votes
0answers
227 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 ...
1
vote
0answers
26 views
list all android shortcuts
I want to list all the shortcuts that appear on the android device screen. So, it will display all the apps, games, settings, everything that displays on the screen of the android mobile device.
I ...
1
vote
0answers
62 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
0answers
227 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
0answers
30 views
Kivy: How do you use ToggleButton in a ListView
I'm trying to use ToggleButton in a ListView app. When i run the code below...
from kivy.uix.modalview import ModalView
from kivy.uix.listview import ListView
from kivy.uix.gridlayout import ...
0
votes
0answers
19 views
Why do I need to create a new instance of a Line instead of simply update or add and remove it in Kivy
I am attempting to draw a line with the mouse by dragging from one point to another point of the window. I also want to represent the line while I am dragging. Like drawing a line in an old MS ...
0
votes
0answers
19 views
Is there something similar to collide_points for Vertex Instructions in Kivy?
The Widget collide_points allows to identify if an event that occurs inside a widget.
I know that one approach used in the Pong Game example is putting the vertex instructions that we want to collide ...
0
votes
0answers
32 views
How to configure Python Kivy for PyCharm on Windows?
I'm having trouble getting Kivy to work with PyCharm on Windows 7. I've managed to add most of the external libraries through File > Settings > Python interpreters > Paths Tab.
I'm using the Kivy ...
0
votes
0answers
44 views
How to make GPS-app for android using kivy, pyjnius?
Im new in KIVY, pyjnius and python-android. I need to make simple app for android, which shows GPS coordinates. But, as i said, i'm new in kivy and pyforandroid. Can somebody show/give me ...
0
votes
0answers
79 views
Installing kivy with pydev on a mac
I am totally dead in the water right now. I'm trying to install kivy in pydev (eclipse) on a mac. I cannot get pydev to recognize kivy (I'm getting an import error - 'No module named kivy'. I've spent ...
0
votes
0answers
98 views
Kivy Import Error in Xcode : Wrong PYTHONPATH
Can someone help me to solve import Error in Xcode when running kivi app in Xcode?
If I take the kivy-examples/demo/touchtracer/main.py file and add
import numpy
at the first line then when I ...
0
votes
0answers
288 views
Fast moving sprite without blur - Python - Kivy
I asked a similar question to this before, but the question and answer aren't relevant to this question.
So I'm making a Pong game and thanks to you guys I am able to have the AI paddle move without ...
0
votes
0answers
147 views
embedding window in pygame
I have a pygame window (using Kivy (kivy.org) framework) and I want to create another window with pygame or glut or pyglet framework and make it embedded into my original pygame window.
The main ...