Python 在Kivy的RecyclerView中显示来自gspread的数据

Python 在Kivy的RecyclerView中显示来自gspread的数据,python,listview,android-recyclerview,kivy,gspread,Python,Listview,Android Recyclerview,Kivy,Gspread,我这里有个问题 我正在开发一个应用程序,其中我需要以表格形式显示从谷歌表单读取的数据。就我在网上的研究而言,RecyclerView似乎是最好的 我用gspread import gspread from oauth2client.service_account import ServiceAccountCredentials scope=['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/driv

我这里有个问题

我正在开发一个应用程序,其中我需要以表格形式显示从谷歌表单读取的数据。就我在网上的研究而言,
RecyclerView
似乎是最好的

我用
gspread

import gspread
from oauth2client.service_account import ServiceAccountCredentials

scope=['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']
cred=ServiceAccountCredentials.from_json_keyfile_name("spreadsheetexample-c77e6184ed8e.json",scope)
client=gspread.authorize(cred)

rawdata=client.open('Python_Kivy_Class12English').sheet1
data=rawdata.get_all_records()
您能帮助以可滚动的表格格式显示这些数据吗? 我还需要让它们可以点击以显示其详细信息

Ps:google文件包含两列