1
不modifiying默認文本從之前的Android 4.3升級我的Nexus 4至4.4(奇巧)我可以抹去蒙山退格鍵,我是在一個TextInput鑄造上負載的默認文本。奇怪的是,現在我不能同時使用默認的鍵盤(谷歌的鍵盤)刪除此TextInput文本的,但可用在谷歌Play以外的鍵盤完美的作品。我不知道這是否是操作系統問題,或者我的代碼需要修改,或者需要升級到Kivy。Android 4.4系統的退格在Kivy的TextInput
我的代碼如下(以KV):
TextInput:
id:txt_from_mail
font_size: root.height * .044
size_hint: (None,None)
size: root.width*.65,root.height*.0833
background_color:(1,2,0.7,0.9)
foreground_color: (.2,.4,.5,.9)
padding_y:self.height*.12
text:"[email protected]" # this is the text that i cannot delete or modify
multiline:False
on_focus:root.clear_mail_feedback()
,並在Python的功能看起來像這樣:
def clear_mail_feedback(self):
self.the_mail_feedback.text="" # this is a label in my form that gives text feedback to users
編輯:我還可以添加其他的調查結果。在TextInput中輸入文本,將應用程序置於後臺,回撥應用程序,並嘗試編輯文本,但不能!這可能是latinIME的問題嗎?與本機編碼?無能......
我看到了您提供的鏈接,但找不到解決方案的位置,或者我可能不知道應該做什麼。可以幫助解釋它。 – toufikovich
的鏈接是一個包含一個臨時解決方案,來測試它,你需要克隆py4a回購和檢出'kitkat_keyboard'分支,並使用這個分支建立自己的分銷pull請求。 –
對不起@ QUA-非再問一遍,豈不是我應該做的$。/ distribute.sh「kitkat_keyboard kivy」 – toufikovich