I am trying to play a video in my app. It has to be embedded.
I went through the \"Play Video Files in Android\" thread.
I am able to play my video using Vi
If you want to play video in full screen, then just add these line of code in your Androidmanifest.xml file, in the activity where this video is going to play. Just add these two lines in android manifest file.
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="orientation|screenSize"
Like in my androidmanifest.xml file i have added it