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

i never see the logcat output in android emulator?

i want see the console output so i use the Logcat but the logcat is not display any output messages. i also restart eclipse.also click on devices log in android DDMS.i also do the Reset All perspective of DDMS.but i can`t success.
Zala Janaksinh
  • 2,929
  • 5
  • 32
  • 58
0
votes
1 answer

Android service to update users' location

I am trying to create a android service that will give updates on the users' location every 5 minutes. I am using the DDMS to send coordinates to the emulator which works fine. I need to convert these coordinates and get the location Eg: New York…
Sindu_
  • 1,347
  • 8
  • 27
  • 67
0
votes
1 answer

Converting coordinates supplied by DDMS into location

I am creating a service that will give updates on the users location every 5 minutes. I am using the DDMS to send the coordinates to the emulator. I want to convert the coordinates and find the location. How can i do this? I am new to android Please…
Sindu_
  • 1,347
  • 8
  • 27
  • 67
0
votes
1 answer

How to find the CPU and Memory utilization for an android app in DDMS?

How to find the CPU and Memory utilization for an android app in DDMS? I need a step by step assistance. What is the difference between heap and allocated memory? Which actually is the real memory being used? And I can see only a PI chart of CPU…
Terminator
  • 227
  • 1
  • 2
  • 5
0
votes
1 answer

how can I debug this android error using my device?

I get the following errors in DDMS. But how can I trace this to the line that throws this exception? What do you think could be the cause of the following error? Is checking the DDMS the best way to debug an android application? I am using…
Ryan
  • 5,456
  • 25
  • 71
  • 129
0
votes
1 answer

what is the meaning of the error shown in DDMS regarding known host exception

Can you help me understand how I should debug this errors? What information would you get from this stack trace that might help you understand what is wrong with this code? I assume andy_lockscreen is not my concern as it doesn't have anything to…
Ryan
  • 5,456
  • 25
  • 71
  • 129
0
votes
1 answer

Android : Ignoring invalid text regex in 4.0.x version

I am getting error in DDMS, when I click in logcat error it moves to DDMS screen & shows this error-- [2012-06-27 17:17:12 - LogCatFilter] Ignoring invalid text regex. [2012-06-27 17:17:12 - LogCatFilter] Unexpected internal error near index 14 …
Rahul Baradia
  • 11,802
  • 17
  • 73
  • 121
0
votes
1 answer

DDMS not working in eclipse

I had sdk 2.2 previously.Then i installed android sdk 2.3 but later uninstalled it.But now the DDMS perspective view file explorer is not working.Thanks in advance.
dka72
  • 355
  • 2
  • 3
  • 14
0
votes
1 answer

Why are processes running on android emulator not showing up in DDMS

I am using eclipse to launch an app in the android emulator. When I open the DDMS perspective, the devices tab shows the emulator process, however it does not show any other processes running on the emulator - I was expecting to see an entry for the…
Jay
  • 1
  • 1
0
votes
1 answer

Is there a way to test the loss of GPS provider on Android? (onProviderDisabled())

I'd like to test my LocationListener() fully on the emulator, to see if it works correctly in all circumstances. Is there a way to test onProviderDisabled() and onProviderEnabled() using the emulator? location_listener = new…
Eilidh
  • 1,354
  • 5
  • 21
  • 43
0
votes
1 answer

Android DDMS Fails To Establish Loopback Thread

I have tried in both Eclipse ADT and the ddms.bat that comes with the android sdk. Both have the same result: "Failed to initialize Monitor Thread: Unable to establish loopback connection". However, if I boot my computer in safe-mode, it works just…
Rhaokiel
  • 261
  • 1
  • 2
  • 10
0
votes
4 answers

intent activity is not working properly . Android

http://img861.imageshack.us/img861/7999/64339196.png I don't understand what the problem is ... I created so many java and xml file , but never faced this problem ... in DDMS there is following error…
Munjal Upadhyay
  • 189
  • 2
  • 4
  • 13
0
votes
2 answers

Is the android emulator sufficient for debugging?

Is it ok if I just use Logcat and DDMS on a virtual device, or do I really need an actual phone too for debugging? I mean, Android just runs on a VM (Dalvik) after all? I just use dropbox and I install my apks directly from my dev dropbox folder.…
polyglot
  • 423
  • 1
  • 4
  • 7
0
votes
2 answers

How to delete all files saved in DDMS data in android?

I have saved some ser file by below code OutputStream file = context.openFileOutput(fileName, Context.MODE_PRIVATE); BufferedOutputStream buffer = new BufferedOutputStream( file ); ObjectOutput output = new…
Sanchit Paurush
  • 6,114
  • 17
  • 68
  • 107
-1
votes
1 answer

android ddms screen capture vertical size seems fixed at 1024

I can successfully run the DDMS screen capture either via the DDMS.bat file or via eclipse however the screen size in the vertical direction seems fixed at about 1024 pixels. My laptop is a bit small with a screen size of 1366x768. If I attach a…
user939719
  • 29
  • 5
1 2 3
40
41