tags:

views:

25

answers:

1
A: 

This lives in the android filesystem, which is different from your computer's file system. To view the files in android filesystem, use adb shell on the command prompt. Run: adb shell ls /data/data/com.andr.activity. Make sure your device/emulator is connected before you do this. Or if you are using eclipse, switch to DDMS view and check out the file explorer.

To View file:

adb shell
Inside shell use:
cd /data/data/com.andr.activity
cat filename

Or Use adb pull to copy file to your computer's local filesystem and then view it using any editor. Read more about adb pull here

Megha Joshi
Thank you very much my file is found there? My emulator is connected and using DDMS I foound my fiel.But how to view that file? I am trying to right click and open but notable to view that file.
Android_programmer_camera
DDMS does not support view file. I have modified my answer above to add how to view file.
Megha Joshi
Thanks for support
Android_programmer_camera