Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 android 8 中遇到双向流式传输的问题。用于 2 路流式传输的库是 Red5。问题:当订阅者流连接时,它会与发布屏幕重叠,因此发布屏幕就会消失。使用setZOrderOnTop(true)并且它有效,但它也重叠到屏幕底部,并且由于重叠,按钮等其他组件不可见。
得到了解决方案。刚刚使用了下面的方法 r5Videoview.setZOrderMediaOverlay(true) 而不是 setZOrderOnTop(true)。