Questions tagged [ddms]

DDMS is an Android SDK tool that provides port-forwarding services, screen capture on the device, thread and heap information on the device, logcat, process, and radio state information, incoming call and SMS spoofing, location data spoofing, and more.

The DDMS (Dalvik Debug Monitor Server) is a tool that comes with the android SDK. It provides port-forwarding services, screen capture on the device, thread and heap information on the device, logcat, process, and radio state information, incoming call and SMS spoofing, location data spoofing, and more.

More information about DDMS is at http://developer.android.com/tools/debugging/ddms.html

615 questions
0
votes
2 answers

Android DDMS does not list apps running on device

Running DDMS to the emulator allows me to view all currently-running apps and their respective port number which I can then use on JDB. DDMS to an actual device does list the device in the DDMS window, but I cannot expand it to show all…
bunbun
  • 2,595
  • 3
  • 34
  • 52
0
votes
1 answer

Manage sqlite on real device with eclipse

I'm using galaxy note with rooted software but I'm retying to find some way to test and manage and browse all my sqlite contents values and tables via eclipse I have used com.questoid.sqlitebrowser_1.2.0.jar plugin but it give me disabled button in…
user3245658
  • 93
  • 1
  • 10
0
votes
1 answer

Show Java code editor in DDMS perspective

In "Java" perspective I can see Java code (between "Package Explorer" and "Outline" - depends on your settings, however it's a kind of default I think). Then I add "DDMS" perspective and I can't see Java code. I have only "Devices" and "Threads",…
Marian Paździoch
  • 8,813
  • 10
  • 58
  • 103
0
votes
0 answers

Unable to find data/data//databases folder in DDMS in eclipse

*I go to the DDMS view in Eclipse while the program that accesses the DB is running. When I go to the data/data directory, I only see folder called "con". Any suggestions?*
0
votes
1 answer

Using the specified output convention by android, how do I go about reading output files

I'm using the following link in Android development: http://developer.android.com/guide/topics/data/data-storage.html#filesInternal with the following important code in my project: String FILENAME = "hello_file"; String string = "hello…
Skorpius
  • 2,135
  • 2
  • 26
  • 31
0
votes
1 answer

Developing Android applications on a shared server

We are trying to use a shared server (Ubuntu 9.10 64-bit) to develop Android applications. The thought is that a number of developers should use the shared server for development. We have overcome some obstacles such as setting the base port for…
Ingo
  • 93
  • 1
  • 9
0
votes
2 answers

Can't find saved file in data/data/package name

I'm saving a hello.txt file with strings inside. But I cant find it in DDMS>selecting my package name in devices>File Explorer>data>data>package name. Even my package name is cut. My package name is bla.Test9 but it only shows bla. Also under…
luwionline
  • 186
  • 2
  • 12
0
votes
1 answer

Android DDMS High Initial Retained Heap

My apologies, this is probably a dumb question. I am getting an out of memory error on my android, so I watched several hours of tutorials on DDMS. I'm still pretty new with it, but this behavior is odd. I was getting around 30mb in my shallow…
Jared Drake
  • 982
  • 4
  • 12
0
votes
1 answer

Creating folder in file-explorer using DDMS perspective

I am trying to create a new folder for sd-card using DDMS perspective. Few days ago I created a sub-folder named DCIM in folder called sdcard: Snapshot-1: Problem I am facing: Today I can't access that folder If I try to create the folder again I…
Devrath
  • 42,072
  • 54
  • 195
  • 297
0
votes
0 answers

Music directory on Nexus 5 emulator

How can I push music to the Nexus 5 (4.4.2) emulator for testing? With Nexus 4 emulator I used DDMS to push to storage/sdcard/Music. But my actual Nexus 5 uses mnt/shell/emulated/0/Music. These folders don't show up on the emulator. (Nor does…
user2449986
  • 77
  • 1
  • 10
0
votes
1 answer

The Activity does not start with usb connected and debugging

I couldn't find if this question was asked before, sorry if it was. I'm building an application, the MainActivity extends FragmentActivity because I have two ViewPagers that shows my fragments. I don't know why, at the beginning I was debugging my…
Murillo Ferreira
  • 1,423
  • 1
  • 16
  • 31
0
votes
1 answer

DDMS Screenshot tool copy does not work on Linux

Using DDMS via Eclipse or through Monitor, it will take the screenshot, but when you copy to clipboard. You can't do anything with it. Gimp, Inkscape, LibreOffice don't recognise what is in the clipboard. The save option is not that good because…
pt123
  • 2,146
  • 1
  • 32
  • 57
0
votes
1 answer

How do you dump an IME's view Hierarchy?

I've just started developing an IME keyboard and am not able to use dump its view hierarchy for analysis. Every I use Android Device Monitor or DDMS to dump the view hierarchy while the keyboard is showing, I only get a dump of the activity in…
Captain Blammo
  • 1,897
  • 20
  • 31
0
votes
1 answer

android not detect file send by DDMS

i do not understand why only by emulator, i can't read files that i have into my SD card directory (send it by DDMS). This is how i create a directory: public static boolean makeDirectory(Context context){ boolean make= true; String sp =…
fabio
  • 271
  • 5
  • 18
0
votes
1 answer

How to post process the snapshot native heap exported from Android DDMS?

I am doing a set of operations on my app repeatedly and checking for memory leaks. I am exporting the heap data from the DDMS snapshots. How do I post process these data and identify the memory leaks along with the call stack ? I tried MAT , but its…
Naresh Kumar
  • 277
  • 4
  • 18