How to stop logcat from scrolling in Android Studio

AndroidAndroid StudioAndroid Logcat

Android Problem Overview


I used Eclipse before and I could easily stop logcat from scrolling, but I can't find same funcionality in Android studio. Anyone knows how to do it?

Android Solutions


Solution 1 - Android

There's no dedicated button for this, but you can just click on / highlight some text around where you want to stop scrolling.

Solution 2 - Android

android studio have this feature enter image description here

you just click on the line three times and you can selectd the line , it will stops scrolling.

Solution 3 - Android

I had the same issue. Simple solution:

In Android monitor, on the right, change No Filters -> Show only selected application.

Solution 4 - Android

I actually just had a problem (in 1.2.2) where I couldn't keep it from scrolling. I tried all the tricks and proper methods mentioned here, but it kept scrolling out from under me.

Turns out there was a problem trying to connect to an emulator that had long since been disconnected, and it kept retrying. And every time it did, it reloaded everything causing logcat to refresh. So it wasn't REALLY scrolling, it just felt like it was because of how big the buffer is.

I unplugged my physical device (that was running along side the emulator), restarted Android Studio, plugged the physical device back in, and boom, it no longer kept "scrolling".

Hopefully this might help someone else. Because I was getting incredibly frustrated for a while, there.

Solution 5 - Android

Stop scrolling log

  1. Disable Scroll to the end https://i.stack.imgur.com/b6Rpx.png" height="25">

  2. If not - you are able to scroll to necessary line manually and LogCat will not be automatically scroll to down

Solution 6 - Android

Goodness, the trick is to search. Search for something within LogCat and then scrolling will stop. Tested: running Android Studio 1.1.0 against a real device (S5). Also, was ticking one line up and one back down until I then right clicked. Then it totally stopped. After that, I can remove the search and the scrolling is no longer automatic.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDrag0View Question on Stackoverflow
Solution 1 - AndroidcnnrView Answer on Stackoverflow
Solution 2 - AndroidtaotaoView Answer on Stackoverflow
Solution 3 - AndroidMichalHView Answer on Stackoverflow
Solution 4 - AndroidToby DeshaneView Answer on Stackoverflow
Solution 5 - AndroidyoAlex5View Answer on Stackoverflow
Solution 6 - AndroidmaxweberView Answer on Stackoverflow