popup window in android
how开发者_开发知识库 can i create the popupwindow with videoview in android?
you could use an activity with popup style and show the VideoView in this Activity:
<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>
精彩评论