在 Textinput 字段中显示内容时,我遇到了一些奇怪/意外的行为(最初用于新记录输入 - 随后用于显示记录数据)。数据在字典中可用,并分配给 Textinput 字段。对于短数据,有时会隐藏字符:
似乎光标位于字符串的末尾,所有字符都在左侧,并且在标签后面“隐藏”(?)。在字段中单击鼠标并向左箭头后,将出现字符。
我的 kv 定义有什么问题?:
BoxLayout:
orientation: "horizontal"
height: 25
size_hint_y: None
Label:
id: _socialsource_label
size_hint: 0.35,1
text: "Social access token:"
size: self.texture_size
halign: 'left'
valign: 'middle'
font_size: 14
color: .3,.3,.3,1
TextInput:
id: socialsource
padding: 4,2,4,0
size_hint: 0.65,1
font_size: 14
multiline: False
readonly: False
text_size: self.width, None
halign: 'left'
foreground_color: .3,.3,.3,1
disabled_foreground_color: .3,.3,.3,1
background_normal: './images/tinputBGnormal.png'
background_active: './images/tinputBGactive.png'
background_disabled_normal: './images/tinputBGdisnormal.png'
background_disabled_active: './images/tinputBGdisactive.png'
在 python 代码中,数据由以下方式分配:
self.socialchnl.text = projdict[0]['PRJSocchnl:']
self.socialsource.text = projdict[0]['PRJSocsrc:']
self.socialprovdr.text = projdict[0]['PRJSocprv:']