1

the getExternalStorageDirectory() returns the path to sdcard0. But generally videos and audios are stored in the sdcard1, that too in folders. How can i get the path to these folders ?

Prat
  • 67
  • 7
  • I think you need to refer to : [1]: http://stackoverflow.com/a/13648873/6127411 && [2]: http://stackoverflow.com/a/5695129/6127411 – Janki Gadhiya Apr 18 '16 at 08:28

2 Answers2

1

You can try set path like this:

...("/sdcard1/folder/file");
0

Try this,

Make videoView,

VideoView videoView;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    videoView = (VideoView)findViewById(R.id.VideoView);        
    videoView.setVideoPath("/sdcard1/blonde_secretary.3gp");
    videoView.start();  
}

I hope this will solve your problem.

bhumika rijiya
  • 440
  • 1
  • 5
  • 42