I am trying to record voice and save it in a file. For this I have to give a path to save the file, but I don't know how will I set the path...I have recently started working on android phone. In windows we set path like a drive e.g. C:/folder/folder....in android phone what will be my root? Where can I save an audio file? Write now I am working on emulator...Will the path be same for both emulator and phone?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
we can create file like this in
file is the path of file where you stored. and add this
|
|||
|
|
|
Save your file in Sdcard.
It is also possible in emulator. create sdcard , when you create emulator. Thanks |
|||
|
|
|
|||
|
|
|
Uri outputFileUri; File root = new File(Environment.getExternalStorageDirectory()
root.mkdirs(); sdImageMainDirectory = new Filenter code here(root, "myPicName.jpg"); outputFileUri = Uri.fromFile(sdImageMainDirectory); |
|||
|
|

