видеоплеер kivy: Видео не возвращается к исходному размеру после полноэкранного режима

#python #kivy #kivy-language

Вопрос:

Когда я дважды щелкаю по видео, оно выходит на весь экран, но если я дважды щелкну по нему еще раз, оно не вернется в нормальное состояние. Однако остальные элементы окна частично видны. Часть кода my .kv, ответственная за видеоплеер, приведена ниже:

 lt;VideosWindowgt;: name: 'vids' FloatLayout:  FileChooserListView:  id:chooser  path: root.get_files_list()   canvas.before:  Color:  rgb: .4, .5, .5  Rectangle:  pos: self.pos  size: self.size  on_selection: root.select(chooser.selection)  size_hint: (.9, .15)  pos_hint: {'x':.05, 'y':.8}   VideoPlayer:  id:vid  options: {'eos':'loop'}  size_hint: (.9, .7)  pos_hint: {'x':.05, 'y':.05}   Button:  size_hint_y: 0.3  height: 48  text: "open"  disabled: not chooser.selection   on_release: root.select(chooser.selection)  size_hint: (.45, .05)  pos_hint: {'x':.05, 'y':.00}  Button:  text: 'Go Back'  color: (1,1,1,1)  background_normal:''  background_color: (0.3,0.6,0.7,1)  on_release:   vid.state = 'pause'  app.root.current = 'saved_files'  size_hint: (.45, .05)  pos_hint: {'x':.50, 'y':.00}  

Код класса видеоокна:

 class VideosWindow(Screen): def get_files_list(self):  files = os.sep.join([my_folder,'mp4'])  return files  def select(self, filename):  self.ids.vid.source = filename[0]  self.ids.vid.state = 'play'  

Скриншоты моей программы до и после перехода в полноэкранный режим: до после

Ответ №1:

Решил эту проблему, добавив виджет видеоплеера в сетку. Теперь код .kv выглядит так:

 lt;VideosWindowgt;: name: 'vids' FloatLayout:  FileChooserListView:  id:chooser  path: root.get_files_list()   canvas.before:  Color:  rgb: .4, .5, .5  Rectangle:  pos: self.pos  size: self.size  on_selection: root.select(chooser.selection)  size_hint: (.9, .15)  pos_hint: {'x':.05, 'y':.8}     GridLayout:  cols:1  size_hint: (.9, .7)  pos_hint: {'x':.05, 'y':.05}   VideoPlayer:  id:vid  options: {'eos':'loop'}      Button:  size_hint_y: 0.3  height: 48  text: "open"  disabled: not chooser.selection   on_release: root.select(chooser.selection)  size_hint: (.45, .05)  pos_hint: {'x':.05, 'y':.00}  Button:  text: 'Go Back'  color: (1,1,1,1)  background_normal:''  background_color: (0.3,0.6,0.7,1)  on_release:   vid.state = 'pause'  app.root.current = 'saved_files'  size_hint: (.45, .05)  pos_hint: {'x':.50, 'y':.00}  

Не знаю, хорошее ли это решение, но оно работает.