【发布时间】:2020-12-28 16:25:49
【问题描述】:
这是主应用程序:
from kivymd.app import MDApp
import sqlite3
class Vinylapp(MDApp):
connection = None
cur = None
connection = sqlite3.connect("vinyl.db")
cur = connection.cursor()
cur.execute("""CREATE TABLE IF NOT EXISTS Vinyl(
name TEXT,
alboum TEXT,
song TEXT)
""")
connection.commit()
connection.close()
def vinyl_add(name,alboum,song):
connection = sqlite3.connect("vinyl.db")
cur = connection.cursor()
connection.execute("INSERT INTO Vinyl VALUES (?,?,?)",(name, alboum, song))
connection.commit()
connection.close()
Vinylapp().run()
这里是kivy文件代码:
主屏幕
MDScreen:
bg: app.theme_cls.bg_light
MDToolbar:
id: toolbar
pos_hint: {"bottom": 1}
title: "Search By Name "
elevation: 10
md_bg_color: [0/255, 200/255, 0/255, 1]
right_action_items: [['magnify', lambda x: app.search_menu.app]]
MDLabel:
text:"ADD VINYL"
halign:"center"
font_style: "Button"
font_size: 20
pos_hint:{"center_x":.5,"center_y":.8}
MDTextField:
hint_text:"Composer Name"
pos_hint: {"center_x":0.5, "center_y":0.6}
size_hint_x:.3
current_hint_text_color: 0, 0, 0, 1
color_mode: 'custom'
line_color_focus: [0/255, 200/255, 0/255, 1]
MDTextField:
hint_text:"Song Name"
pos_hint: {"center_x":0.5, "center_y":0.4}
size_hint_x:.3
current_hint_text_color: 0, 0, 0, 1
color_mode: 'custom'
line_color_focus: [0/255, 200/255, 0/255, 1]
MDTextField:
hint_text:"Alboum Name"
pos_hint: {"center_x":0.5, "center_y":0.5}
size_hint_x:.3
current_hint_text_color: 0, 0, 0, 1
color_mode: 'custom'
line_color_focus: [0/255, 200/255, 0/255, 1]
还有按钮
MDRaisedButton:
text:"ADD"
pos_hint: {"center_x":.5, "center_y":.23}
size_hint_x: 0.3
text_color: 1, 1, 1, 1
md_bg_color: [0/255, 200/255, 0/255, 1]
on_press: app.vinyl_add()
【问题讨论】:
-
MDRaisedButton: text:"ADD" pos_hint: {"center_x":.5, "center_y":.23} size_hint_x: 0.3 text_color: 1, 1, 1, 1 md_bg_color: [0/255 , 200/255, 0/255, 1] on_press: app.vinyl_add() 这是按钮
-
ADD按钮是主屏幕的一部分吗? -
@JohnAnderson 是的