android中的弹出窗口

时间:2011-01-12 23:02:43

标签: android-widget

如何在android中创建带有videoview的popupwindow?

1 个答案:

答案 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>