Balaji.K
Balaji.K

Reputation: 4829

popup window in android

how can i create the popupwindow with videoview in android?

Upvotes: 0

Views: 644

Answers (1)

3dmg
3dmg

Reputation: 738

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>

Upvotes: 1

Related Questions