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.
我想VideoView在android中的Dialog中显示一个,但我无法控制它,MediaController因为视频似乎出现在后面,而且视频看起来更暗。?如何解决这个问题?
VideoView
MediaController
我建议您需要使用 anActivity而不是Dialog. 将您的主题设置为在清单Activity中模拟 a 。Dialog
Activity
Dialog
示例- AndroidManifest.xml:
android:theme="@android:style/Theme.Dialog"
然后,您将能够VideoView像示例中一样显示 a。
使用: videoView.setZOrderOnTop(true); 并且视频不会显得更暗。
videoView.setZOrderOnTop(true);