当我从图库中上传视频,然后尝试导航到下一个屏幕时,该视频将继续在后台播放。
下面是我的代码:
import networkx as nx
import networkx.algorithms.matching as matching
G=nx.Graph()
G.add_edge(1,2,weight = 30)
G.add_edge(1,3,weight = 100)
G.add_edge(1,4,weight = 30)
G.add_edge(2,3,weight = 0)
G.add_edge(2,4,weight = 30)
G.add_edge(3,4,weight = 30)
M = matching.max_weight_matching(G,maxcardinality=True)
print(list(M))
//OUTPUT: [(1, 3), (2, 4)]
我已经尝试过使用NavigationFocus,但是它没有用,请告诉我是否还有其他方法,如果需要其他说明也请告知我。
任何建议都会很棒。
答案 0 :(得分:0)
我终于解决了这个问题,方法是为下一个按钮创建一个函数,并将每当屏幕导航到另一个屏幕时将paused的状态设置为true。 希望有帮助。