Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey
Filter by
Sorted by
Tagged with
3 votes
0 answers
136 views

I used the example from https://github.com/kivy/kivy/blob/master/examples/widgets/recycleview/basic_data.py and modified it only to provide some garbage collector stats. What I see is that objects are ...
Eugene B's user avatar
2 votes
2 answers
48 views

class SimpleRecycleView(RecycleView): def __init__(self, **kwargs): super(SimpleRecycleView, self).__init__(**kwargs) self.viewclass = 'Label' self.layout_manager = ...
mipsii's user avatar
  • 29
0 votes
1 answer
38 views

I have checked this problem all over, and with everyone else it seems it's simply a problem of them not having the class on both their KV and Python files, however, I'm still getting this error ...
ThatOneNerd's user avatar
0 votes
1 answer
47 views

I wanted to use the Kivy Accordion widget in my python app, but I couldn't get it to work right - the accordion items would expand or contract to exactly fill the space in the window. That's when I ...
Todd Hoatson's user avatar
-1 votes
1 answer
64 views

I am using RecycleView for displaying a large number of data in sql. However the problem that i encounter is i can't scroll to the bottom. It will just push back a little bit higher but i can't scroll ...
nathan's user avatar
  • 44
0 votes
1 answer
66 views

I created CustomCard for displaying data in sqlite. The problem i encounter is when there are atleast 20 CustomCards created, it shows the error based on the title. [CRITICAL] [Clock ] Warning, ...
nathan's user avatar
  • 44
0 votes
1 answer
75 views

I am trying to build a following kivy app: Select a folder on screen one Popup window comes up showing progress of populating a list of dictionaries with files info from selected folder Once this is ...
xeligio's user avatar
0 votes
1 answer
68 views

I am new to Kivy. Learning by building a simple app. I want to show a list of items at the top (Used RecycleView widget for this). At the bottom will be a text box (used TextInput widget) and button (...
user23898843's user avatar
0 votes
1 answer
38 views

I don't understand how to make the blk be full screen and the items are sorted from top to bottom instead of bottom. Here is what the program looks like with the following code: This is what I need: ...
Aster's user avatar
  • 29
1 vote
1 answer
44 views

how to make the main and not the shop open when the program starts the program has a menu and three screens. i need to open the main screen when i start it and not the shop and maybe there is also an ...
Aster's user avatar
  • 29
0 votes
1 answer
43 views

I've already watched a lot of videos and don't understand why the rounding doesn't work. I get the following buttons: And we need these: main.py: Window.size = (430, 930) class Container(BoxLayout):...
Aster's user avatar
  • 29
0 votes
1 answer
57 views

I'm trying to create a UI in kivy where users get to set answer to flashcards in a message like format. I've got the following code, which works (in terms of functionality), but I'm stuck with the ...
b0d's user avatar
  • 21
0 votes
1 answer
77 views

I am trying to build a function that helps the user select/unselect all viewclass-instances in a RecycleView. The Problem is that while i can change the "selected" attribute of every ...
ats75's user avatar
  • 21
0 votes
1 answer
40 views

Scenario: I've a window with 3 columns, in the 2nd is a RecycleView with 20 items. When the user drops an item onto the RecycleView, I want to get the corresponding data-item. All I need is to tell, ...
andy's user avatar
  • 3
0 votes
1 answer
50 views

In a Kivy form i set 2 Recycleviews(A and B). I would add the item clicked in Recycleview A, to the RecycleView B, using a Python3 script: from functools import partial from kivy.app import App from ...
Tommy's user avatar
  • 144
0 votes
0 answers
47 views

I'm new to Kivy and I stumbled upon an issue when using the RecycleViw. Basically, I have a switch for every entry in my recycle view to activate or deactivate the text input. This said, when I ...
RitaFuchs's user avatar
0 votes
0 answers
42 views

help needed. I wanted to do a recycle, but when I run the code, and go to recycleview's screen, nothing appears. Only a screen with a specific color on the background. I wanted to do a recycle view ...
user avatar
0 votes
1 answer
93 views

I'm trying to create a RecycleView that lists a number of items that changes depending on the selected day, and only shows the items for a particular user. I've created a login function for my app ...
AprilMay's user avatar
0 votes
1 answer
129 views

Im trying to make the list of this custom widgets be in a vertical list above and below each other but they all appear in the same pos. Im not sure where im going wrong. I'vw tried a few little things ...
Corey Magick's user avatar
0 votes
1 answer
1k views

I made a recycleview list of custom cards. For each card i want to pass a custom object called "show", its type is "Content". The class of custom card is "StreamingShowCard&...
VLN's user avatar
  • 23
0 votes
1 answer
142 views

I want to use Kivy's RecycleView to make a multiline scrollable selection list, but I need to set as selected some of the items by default. The user must still be able to unselect them, if they wish (...
iperetta's user avatar
  • 617
0 votes
1 answer
145 views

My App have a Timer as a data in recycleview that will be updating to change the text of the timer each second. So I used Clock to call timer_update function every one second to update the time. The ...
Abdul Nuhu's user avatar
0 votes
1 answer
84 views

I am new to python and kivy and am learning how to pass information between kivy objects and python. I have the basic concepts down but this problem has me stumped. I am writing an app to manage GPS ...
Paul's user avatar
  • 3
0 votes
1 answer
493 views

I'm creating an mp3 player using kivy recycleview, the app has a lot of buttons in the playlist screen and whenever you click on a button, icon of that button change from 'play' to 'pause' and vice ...
Abdul Nuhu's user avatar
0 votes
1 answer
586 views

I'm developing a music player mobile application using kivy2.0.0, in the app there is a playlist screen that consist of more than 100 mdboxlayout widget called 'MusicListItem'. I have these 2 problems ...
Abdul Nuhu's user avatar
0 votes
1 answer
126 views

beginner here. Im not completely sure if everything is correct in the code bellow, but it seems to work for making the size of the buttons created by recycleview, to adapt to each button's text. ...
Mat F's user avatar
  • 5
0 votes
0 answers
60 views

I have wrote a nice code for a mobile app. Usually I run it on Kivy Launcher and most of the time everything goes well. But recently I have added recycleview and now Kivy Launcher doesnt start my app. ...
Batuhan Karakaya's user avatar
0 votes
1 answer
163 views

I have a kind of major problem here. I want to create a list at the bottom of my app. I have a dictionary which works on this guy's solution: How to put multiple columns into a kivy RecycleView? ...
Batuhan Karakaya's user avatar
0 votes
1 answer
63 views

I would like to know where can I see and use the parameters given on the data during the creation of the widgets. Problem: it looks like __init__ doesn't have the information so the call has to be ...
Utopion's user avatar
  • 1,168
0 votes
1 answer
438 views

I saw different posts talking about that: HERE and THERE. But they are complex solutions when I just want to understand what is the exact line that make the changement. I have the access to the ...
Utopion's user avatar
  • 1,168
0 votes
1 answer
304 views

Each kivy carousel slide consists of an image at the top (with a checkbox) and text below. The direction of the carousel is 'right' (one after the other horizontally). Image and text data are fed to ...
Henry Thornton's user avatar
1 vote
2 answers
403 views

The minimum code is for a grid of images each with a checkbox using Kivy, RecycleView and RecycleGridLayout. The problems include: i) The selection/deselection of a checkbox doesn't display; 2) It is ...
Henry Thornton's user avatar
0 votes
2 answers
506 views

When the checkbox for an item is clicked/unclicked in a recycleview grid, the click/unclick also automatically repeats for other data items in the grid. Why is this happening? The code below is a ...
Henry Thornton's user avatar