- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个按钮,当所有微调器都选择了值时,该按钮会移动到下一个屏幕。为了确定旋转器何时具有值(日、小时和分钟旋转器),我为每个旋转器分配了 state
值。除了下面显示的 kv 代码中的 if 语句之外,大多数代码都按预期工作。
Button:
background_color: 0, 0, 0, 1
size: (400, 130)
size_hint: (None, None)
pos_hint: {'right': 0.6, 'center_y': 0}
on_press:
root.hours_checking()
if day.state == hours.state == minutes.state == AmPm.state == 'True': \
root.manager.current = 'screen_three'
这部分代码由于某种原因似乎没有执行。不会转换到屏幕 3。
if day.state == hours.state == minutes.state == AmPm.state == 'True': \
root.manager.current = 'screen_three'
Spinner:
id: day
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.5, .5)}
text: 'Day'
values: 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'
on_text:
root.on_day_select(self.text)
state: 'True'
Spinner:
id: hours
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.1, .5)}
text: 'Hour'
values: '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'
on_text:
root.on_hours_select(self.text)
state: 'True'
Spinner:
id: minutes
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.3, .5)}
text: 'Minutes'
values: '00', '15', '30', '45'
on_text:
root.on_minutes_select(self.text)
state: 'True'
Spinner:
id: AmPm
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.4, .5)}
text: 'AM/PM'
values: 'a.m', 'p.m'
on_text:
root.on_AmPm_select(self.text)
state: 'True'
这是我的整个代码。如果它有助于解决我的错误。
import kivy
kivy.require('1.11.1')
from kivy.app import App
from kivy.lang import Builder
from kivy.uix.label import Label
from kivy.uix.widget import Widget
from kivy.uix.screenmanager import ScreenManager, Screen
from kivy.config import Config
from kivy.animation import Animation
from kivy.clock import Clock
from datetime import datetime
from datetime import timedelta
from kivy.uix.dropdown import DropDown
from kivy.uix.button import Button
from kivy.base import runTouchApp
from kivy.uix.behaviors import ButtonBehavior
from kivy.uix.scrollview import ScrollView
from kivy.uix.gridlayout import GridLayout
from kivy.base import runTouchApp
from kivy.uix.spinner import Spinner
# You can create your kv code in the Python file
Builder.load_string("""
<ScreenOne>:
FloatLayout:
orientation: 'horizontal'
canvas:
Rectangle:
source: 'back1.jpg'
size: self.size
pos: self.pos
BoxLayout:
Button:
background_color: 0, 0, 0, 0
on_press:
# You can define the duration of the change
# and the direction of the slide
root.manager.transition.direction = 'up'
root.manager.transition.duration = 1
root.manager.current = 'screen_two'
BoxLayout:
Label:
id: blinky
text: "Click Anywhere To Continue"
font_size: '20sp'
font_name: "Raleway-Regular"
size_hint: (1.0, 0)
alpha: 1
color: (1, 1, 1, self.alpha)
<ScreenTwo>:
FloatLayout:
orientation: 'horizontal'
canvas:
Rectangle:
source: 'back2.jpg'
size: self.size
pos: self.pos
Label:
id: white_box
size: (500,500)
alpha: 1
bcolor: (1, 1, 1, self.alpha)
Button:
background_color: 0, 0, 0, 1
size: (400, 130)
size_hint: (None, None)
pos_hint: {'right': 0.6, 'center_y': 0.30}
on_press:
root.time_now()
root.manager.current = 'screen_three'
Button:
background_color: 0, 0, 0, 1
size: (400, 130)
size_hint: (None, None)
pos_hint: {'right': 0.6, 'center_y': 0}
on_press:
root.hours_checking()
if day.state == hours.state == minutes.state == AmPm.state == 'True': \
root.manager.current = 'screen_three'
Spinner:
id: day
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.5, .5)}
text: 'Day'
values: 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'
on_text:
root.on_day_select(self.text)
self.state: 'True'
Spinner:
id: hours
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.1, .5)}
text: 'Hour'
values: '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'
on_text:
root.on_hours_select(self.text)
self.state: 'True'
Spinner:
id: minutes
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.3, .5)}
text: 'Minutes'
values: '00', '15', '30', '45'
on_text:
root.on_minutes_select(self.text)
self.state: 'True'
Spinner:
id: AmPm
size_hint: None, None
size: 100, 44
pos_hint: {'center': (.4, .5)}
text: 'AM/PM'
values: 'a.m', 'p.m'
on_text:
root.on_AmPm_select(self.text)
self.state: 'True'
<ScreenThree>:
BoxLayout:
Button:
background_color: 1, 0, 0, 1
on_press:
# You can define the duration of the change
# and the direction of the slide
root.manager.current = 'screen_two'
""")
# Create a class for all screens in which you can include
# helpful methods specific to that screen
Config.set('graphics', 'resizable', '0') # 0 being off 1 being on as in true/false
Config.set('graphics', 'width', '960')
Config.set('graphics', 'height', '720')
class ScreenOne(Screen):
pass
class ScreenTwo(Screen):
def __init__(self, a=1):
super(ScreenTwo, self).__init__()
self.state = state
def time_now(self):
global now, month_now, date_now, day_now, hour_now, minute_now, time_now
now = datetime.now()
print(now)
month_now = int(now.strftime("%m")) # month in int
print("month:", month_now)
date_now = int(now.strftime("%d")) # date in int
print("date:", date_now)
day_now = now.strftime("%A") # day in str
print("day of the week:", day_now)
hour_now = int(now.strftime("%H")) * 100
minute_now = int(now.strftime("%M"))
time_now = hour_now + minute_now # day in str in 24 hour format
print("time:", time_now)
def check_open(day_now, opening_days, time_now, opening_time):
global isopen
opening_days = ["Monday", "Tuesday", "Wednesday", "Thursday", "Saturday"]
opening_time = [800, 2200]
isopen = False
if day_now in opening_days and time_now >= opening_time[0] and time_now <= opening_time[1]:
isopen = True
print("Is the store open? ", isopen)
return isopen
else:
print("Is the store open? ", isopen)
return
def on_day_select(self, text):
global day
day = str(text)
def on_hours_select(self, text):
global hours
hours = int(text)
def on_minutes_select(self, text):
global minutes
minutes = int(text)
def on_AmPm_select(self,text):
global AmPm
AmPm = str(text)
def hours_checking(self):
global AmPm
global hours
global minutes
global day
try:
if 1 <= hours <= 11 and AmPm == 'a.m':
pass
elif 1 <= hours <= 12 and AmPm == 'p.m':
hours += 12
elif hours == 12 and AmPm == 'a.m':
hours = 0
except:
print('error')
else:
print(day, hours, minutes)
pass
class ScreenThree(Screen):
pass
# The ScreenManager controls moving between screens
screen_manager = ScreenManager()
# Add the screens to the manager and then supply a name
# that is used to switch screens
screen_manager.add_widget(ScreenOne(name="screen_one"))
screen_manager.add_widget(ScreenTwo(name="screen_two"))
screen_manager.add_widget(ScreenThree(name="screen_three"))
class KivyTut2App(App):
def blink_animation(self, dt):
anim = Animation(alpha=0, duration=1) + Animation(alpha=1, duration=1)
anim.repeat = True
anim.start(screen_manager.get_screen('screen_one').ids.blinky)
def build(self):
Clock.schedule_once(self.blink_animation)
return screen_manager
sample_app = KivyTut2App()
sample_app.run()
最佳答案
on_text:
root.on_day_select(self.text)
state: 'True'
state: True
这一部分没有做任何有用的事情。我假设您使用的是 Python 3,因此它被解析为 annotation .
您可能想使用self.state = True
。除非您定义了state
,否则这仍然不起作用。类上的属性(您可能没有),也因为您的 if day.state == hours.state == minutes.state == AmPm.state == 1
正在检查值 1,而不是值 'True'
这是一个字符串。
关于python - 在 Kivy 中通过 if 条件更改屏幕似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58778611/
SO亲爱的 friend 们: 2014 年 3 月 18 日。我正在处理一种情况,在使用 ng-repeat 时,数组内的元素(我从 Json 字符串中获取)更改了原始顺序。 需要明确的是,数组中的
有很多问题询问如何在 JavaScript 单击处理程序中更改 div 的类,例如,此处:Change Div style onclick .我理解得很好(只需更改 .className),并且它有效
我从access导入了一个数据库到mysql,但其中一个表的列名“股数”带有空格,但我尝试更改、替换甚至删除列名,但失败了。任何人都可以帮助解决这一问题 String UpdateQuary = "U
我正在做一个随机的学校元素。 目前,我有一个包含两个 CSS 的页面。一种用于正常 View ,一种用于残障人士 View 。 此页面还包括两个按钮,它们将更改使用的样式表。 function c
我需要使用 javascript 更改 HTML 元素中的文本,但我不知道该怎么做。 ¿有什么帮助吗? 我把它定义成这样: Text I want to change. 我正在尝试这样做: docum
我在它自己的文件 nav_bar.shtml 中有一个主导航栏,每个其他页面都包含该导航栏。这个菜单栏是一个 jQuery 菜单栏(ApyCom 是销售这些导航栏的公司的名称)。导航栏上的元素如何确定
我正在摆弄我的代码,并开始想知道这个变化是否来自: if(array[index] == 0) 对此: if(!array[index] != 0) 可能会影响任何代码,或者它只是做同样的事情而我不需
我一直在想办法调整控制台窗口的大小。这是我正在使用的函数的代码: #include #include #define WIDTH 70 #define HEIGHT 35 HANDLE wHnd;
我有很多情况会导致相同的消息框警报。 有没有比做几个 if 语句更简单/更好的解决方案? PRODUCTS BOX1 BOX2 BOX3
我有一个包含这些元素的 XELEMENT B Bob Petier 19310227 1 我想像这样转换前缀。 B Bob Pet
我使用 MySQL 5.6 遇到了这种情况: 此查询有效并返回预期结果: select * from some_table where a = 'b' and metadata->>"$.countr
我想知道是否有人知道可以检测 R 中日期列格式的任何中断的包或函数,即检测日期向量格式更改的位置,例如: 11/2/90 12/2/90 . . . 15/Feb/1990 16/Feb/1990 .
我希望能够在小部件显示后更改 GtkButton 的标签 char *ButtonStance == "Connect"; GtkWidget *EntryButton = gtk_button_ne
我正在使用 Altera DE2 FPGA 开发板并尝试使用 SD 卡端口和音频线路输出。我正在使用 VHDL 和 C 进行编程,但由于缺乏经验/知识,我在 C 部分遇到了困难。 目前,我可以从 SD
注意到这个链接后: http://www.newscientist.com/blogs/nstv/2010/12/best-videos-of-2010-progress-bar-illusion.h
我想知道在某些情况下,即使剧本任务已成功执行并且 ok=2,ansible 也会显示“changed=0”。使用 Rest API 和 uri 模块时会发生这种情况。我试图找到解释但没有成功。谁能告诉
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicate: add buttons to push notification alert 是否可以在远程通知显示的警报框中指定有
当您的 TabBarController 中有超过 5 个 View Controller 时,系统会自动为您设置一个“更多” View 。是否可以更改此 View 中导航栏的颜色以匹配我正在使用的颜
如何更改.AndroidStudioBeta文件夹的位置,默认情况下,该文件夹位于Windows中的\ .. \ User \ .AndroidStudioBeta,而不会破坏任何内容? /编辑: 找
我目前正在尝试将更具功能性的编程风格应用于涉及低级(基于 LWJGL)GUI 开发的项目。显然,在这种情况下,需要携带很多状态,这在当前版本中是可变的。我的目标是最终拥有一个完全不可变的状态,以避免状
我是一名优秀的程序员,十分优秀!