It's pretty obvious that the path to your video file is located on
your Windows workstation. You have to remember the emulator is running
Linux in an emulation of an ARM processor. It doesn't have access to
the files on your workstation. You need to copy the video file to the
SD card emulation while the emulator is running using adb push.

On Apr 2, 12:05 am, Nithin <nithi...@gmail.com> wrote:
> Hi to all
>
>              Can any one tell me how to play video in emulator... I
> tried but its give error
> Code is as below..
>
> package com.example;
> import android.app.Activity;
> import android.graphics.PixelFormat;
> import android.net.Uri;
> import android.os.Bundle;
> import android.util.Log;
> import android.widget.MediaController;
> import android.widget.Toast;
> import android.widget.VideoView;
>
> public class VideoViewDemo extends Activity {
>
>     /**
>      * TODO: Set the path variable to a streaming video URL or a local
> media
>      * file path.
>      */
>     private String path = "C:\Documents and Settings\nithin\My
> Documents\Downloads\disney_256v_32a.mp4";
>     private VideoView mVideoView;
>
>     @Override
>     public void onCreate(Bundle icicle) {
>         super.onCreate(icicle);
>         setContentView(R.layout.videoview);
>         mVideoView = (VideoView) findViewById(R.id.surface_view);
>
>         if (path == "") {
>             // Tell the user to provide a media file URL/path.
>             Toast.makeText(
>                     VideoViewDemo.this,
>                     "Please edit VideoViewDemo Activity, and set path"
>                             + " variable to your media file URL/path",
>                     Toast.LENGTH_LONG).show();
>
>         } else {
>
>             /*
>              * Alternatively,for streaming media you can use
>              * mVideoView.setVideoURI(Uri.parse(URLstring));
>              */
>             mVideoView.setVideoPath(path);
>             mVideoView.setMediaController(new MediaController(this));
>             mVideoView.requestFocus();
>
>         }
>     }
>
> }
>
> Thank You in advance
> Nithin N V
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to