android 自定义播放器播放视频

void playVideo()
		{
			String videoUri = "android.resource://com.example.balsscr/" + R.raw.video; 
            
            vv = (VideoView)findViewById(R.id.videoView);
           // vv.setVideoPath("/sdcard/video.mp4");
            vv.setVideoURI(Uri.parse(videoUri));
            
            vv.setOnCompletionListener(new MediaPlayer.OnCompletionListener()
            {

				@Override
				public void onCompletion(MediaPlayer mp)
					{
						// TODO Auto-generated method stub

						mp.setLooping(true);
						try
							{
								mp.prepare();
							} catch (IllegalStateException e)
							{
								// TODO Auto-generated catch block
								e.printStackTrace();
							} catch (IOException e)
							{
								// TODO Auto-generated catch block
								e.printStackTrace();
							}
						mp.start();
					
					}
            	
            });
            
            vv.start();
		}



<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
 
    tools:context=".MainActivity" >

    <VideoView
        android:id="@+id/videoView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" >

	</VideoView>
    
</RelativeLayout>


你可能感兴趣的:(android 自定义播放器播放视频)