如何在android中创建带有videoview的popupwindow?
答案 0 :(得分:1)
您可以使用具有弹出式样式的活动,并在此活动中显示VideoView:
<activity android:name=".DetailDialog" android:theme="@style/Theme.CustomDialog"></activity>
<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog">
<item name="android:backgroundDimEnabled">false</item>
</style>