How to Play a Video from url in Android ?

Play a video from Url :

Xml : video.xml

<RelativeLayout
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:background=”#FFFFFF” >

<VideoView

android:id=”@+id/videoView”
style=”@android:style/Theme.Holo.Light”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:layout_gravity=”center” />

 

</RelativeLayout>

Below I enter the java file use for play live video with streaming .

video.java :

videoplay