noobee
noobee

Reputation: 383

AndroidStudio show usage of RAM

I have seen on other AndroidStudio-pictures, that there is a RAM usage at the right bottom. I tried to setup this statuslist o the bottom. But a rightclick didn`t help me. How can I switch on the RAM usage in AndroidStudio ?

Upvotes: 25

Views: 23037

Answers (6)

Jaswinder
Jaswinder

Reputation: 2279

Android Studio above 4.0 - Bottom Bar > Right click > Enable Memory Indicator Update Answer

Below 4.0 Setting > Appearance and enable Show memory indicator Show memory indicator

Upvotes: 45

Mimu Saha Tishan
Mimu Saha Tishan

Reputation: 2633

I am using 4.1.1. And also for latest version u can use following steps till now.

Bottom bar-> right click -> check Memory Indicator

enter image description here

Upvotes: 26

Varun Jain
Varun Jain

Reputation: 155

For me, this didn't work

Setting > Appearance and enable Show memory indicator

For Android Studio 4.0 or higher, The way to show memory used by android studio in the IDE itself is View -> Appearance -> Status bar widgets -> Memory Indidcator

Upvotes: 10

Hasan Uddin
Hasan Uddin

Reputation: 502

go to Setting > Appearance & Behavior > Appearance > In Window Option Segment > tick "Show memory indicator" and save setting.

After that you can view memory indicator in bottom right corner, you can trigger garbage collector by click on memory bar.

Upvotes: 1

kuzdu
kuzdu

Reputation: 7524

Maybe I misunderstood the question but I need to see the usage of ram in my application.

I found the solution here:

https://developer.android.com/studio/profile/memory-profiler

Click View > Tool Windows > Profiler (you can also click Profile in the toolbar).

Select the device and app process you want to profile from the Android Profiler toolbar. If you've connected a device over USB but don't see it listed, ensure that you have enabled USB debugging. Click anywhere in the MEMORY timeline to open the Memory Profiler.

enter image description here

Upvotes: 5

jdstaerk
jdstaerk

Reputation: 892

at the top of Android studio you'll find "Tools" (next to "Run" and "VCS"). Click it and go to "Android" --> "Android Device Monitor". A new Tab called "Android Monitor" is now added to your tooblar at the bottom. Click on it and you'll see stats like "Network" and "Memory". I hope this solves your problem!

Cheers!

Upvotes: 0

Related Questions