How to enable Android monitor?

11,982

Solution 1

You can Simply Go To Tools > Android > Android Device Monitor in That Monitor you can find tabs like System Information or Heap. Is this answer your question?

Update:

another way you can have it. like this
Eclipse Preferences (OSX) > Android > DDMS > check Thread Updates Enabled by Default

Add Android Device view to get device pan(e) noted above

Set android:debuggable=true (two g's) in app tag as noted above

Run your app in emulator

Select device in device pane

Click the update threads button

Solution 2

I had the same problem. Here's hoping this fix works for you.

In the Android Monitor controls, it looks like you have selected a dead process. In my case, I had selected a disconnected emulator instead of the device I wanted to monitor. Double check that you have selected the correct device and process.

Solution 3

In Android Studio 3.5+ there is no Memory Monitor, instead there is Profiler.

Share:
11,982
Ajit Kumar Dubey
Author by

Ajit Kumar Dubey

Find me on Skype-IM - ajitdubey1

Updated on June 04, 2022

Comments

  • Ajit Kumar Dubey
    Ajit Kumar Dubey about 2 years

    I wanted to see how much memory consume my application but when I open Android Monitor it's showing this monitor is disabled even my application running on device and also selected in debuggable application

    enter image description here

    enter image description here Already Enabled ADB integration

    enter image description here

    I am wondering how to enable it.

    Thanks