Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android DDMS view not available in Eclipse Juno

I am working on porting a game I made to android (never programmed on android before) and want the android DDMS for profiling, as shown in Using DDMS but the view is not available in eclipse (no DDMS in Show View -> Other) even though the SDK manager reports it is installed and I can run usb debug mode on my phone from eclipse just fine.

How do I set up the debug view shown in the picture above in Juno?

like image 437
arynaq Avatar asked Jun 08 '13 19:06

arynaq


People also ask

How do I run DDMS in Eclipse?

Running DDMS 1 From Eclipse: Click Window > Open Perspective > Other... > DDMS. 2 From the command line: Type ddms (or ./ddms on Mac/Linux) from the tools/ directory. More ...

How do I use DDMS with Android emulators?

If both are connected and running simultaneously, DDMS defaults to the emulator. From Eclipse: Click Window > Open Perspective > Other... > DDMS. From the command line: Type ddms (or ./ddms on Mac/Linux) from the tools/ directory. On Android, every application runs in its own process, each of which runs in its own virtual machine (VM).

How do I view threads in DDMS?

The Threads tab in DDMS shows you the currently running threads for a selected process. In the Devices tab, select the process that you want to examine the threads for. Click the Update Threads button. In the Threads tab, you can view the thread information for the selected process.

How does DDMS connect to a VM?

Once a VM is running, DDMS retrieves the the VM's process ID (pid), via adb, and opens a connection to the VM's debugger, through the adb daemon (adbd) on the device. DDMS can now talk to the VM using a custom wire protocol. DDMS assigns a debugging port to each VM on the device.


1 Answers

Not in Show view it is in "Open Perspective"

Just do the following

From Eclipse: Click Window > Open Perspective > Other... > DDMS.

like image 94
Pritesh Avatar answered Oct 10 '22 21:10

Pritesh