For questions about the Python Kivy RecycleView component. Not to be confused with [android-recyclerview]. If your question is about Java, Kotlin, or any language that is not Python, this is the wrong tag; use [android-recyclerview] instead.
Questions tagged [kivy-recycleview]
21 questions
1
vote
1 answer
Kivy RecycleView data widgets showing up on top of each other
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 that I could thnk of, but clearly, to no…

Corey Magick
- 11
- 2
1
vote
2 answers
CheckBox problems with Kivy using RecycleView
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 resetting the checkbox so a deselect appears to…

Henry Thornton
- 4,381
- 9
- 36
- 43
0
votes
1 answer
Difficulties selecting/unselecting all Viewclasses in a RecycleView
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 viewclass in the RecycleView to True or False.
like this for…

ats75
- 1
0
votes
1 answer
How to get target RecycleView's item by x/y pos, e.g. in on_drop_file event?
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, onto which RecycleView's item was a file dropped.…

andy
- 3
- 2
0
votes
1 answer
Python3 - Kivy RecycleView's data Dictionary succefully updated, but not phisically the Widget
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 kivy.lang.builder import Builder
from…

Tommy
- 101
- 8
0
votes
0 answers
Kivy: How to make a Switch in RecycleView unique?
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 activate the "profilename_1", it also activates the…

RitaFuchs
- 1
- 2
0
votes
0 answers
How do I fix Problem with recycleview on kivy app
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 with a viewclass of button.
Here is the code…
user18862346
0
votes
1 answer
How to load Kivy RecycleView based on changing variables from other classes?
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 that, when called, sets the current_user to the user…

AprilMay
- 1
- 1
0
votes
1 answer
Properly set default selections with RecycleView (Python/Kivy)
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 (I want to implement some sort of proposed…

iperetta
- 607
- 10
- 19
0
votes
1 answer
Kivy recycleview not updating on Clock call function
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 issue is that the Timer text is updated when print…

Abdul Nuhu
- 43
- 1
- 5
0
votes
1 answer
Error passing kivy attribute between classes in ScreenManager
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 waypoints that are classified into groups. The…

Paul
- 3
- 2
0
votes
1 answer
How to select only one button in kivy recycleview
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 versa.
I would like to know how to make it be in a…

Abdul Nuhu
- 43
- 1
- 5
0
votes
1 answer
Kivy recycleview not scrolling smoothly
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 with the app:
The scrolling part is not…

Abdul Nuhu
- 43
- 1
- 5
0
votes
1 answer
How can i access the clicked button of a recycle view?
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.
Question:
How can i access (print for now) the clicked…

Mat F
- 5
- 3
0
votes
0 answers
how do I solve Kivy Launcher recycleview error?
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. I use Logcat. When I run it, it…

Batuhan Karakaya
- 33
- 7