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?
- 1Could you elaborate a bit more please?Drag0– Drag02013-10-18 21:13:07 +00:00Commented Oct 18, 2013 at 21:13
- 8If you click on the logcat output before scrolling it should stop automatically scrolling.Lesleh– Lesleh2013-10-18 21:39:48 +00:00Commented Oct 18, 2013 at 21:39
- 2Such an annoying and obvious little bug.Joshua Pinter– Joshua Pinter2014-03-15 19:54:05 +00:00Commented Mar 15, 2014 at 19:54
- As stated in @taotao's answer: Triple click the line & voilla!Ujjwal Singh– Ujjwal Singh2015-02-27 00:31:51 +00:00Commented Feb 27, 2015 at 0:31
- None of the answers work in Windows running Android Studio 1.1.0 against a real device (S5). Has nobody at Google even tried to use this tool to write an Android app? This is the same stuff other tech giants have always done: release junk but not use it themselves. "Eat their own dog food". Google became Microsoft.maxweber– maxweber2015-05-11 16:22:13 +00:00Commented May 11, 2015 at 16:22
6 Answers
There's no dedicated button for this, but you can just click on / highlight some text around where you want to stop scrolling.
8 Comments
android studio have this feature 
you just click on the line three times and you can selectd the line , it will stops scrolling.
3 Comments
I had the same issue. Simple solution:
In Android monitor, on the right, change No Filters -> Show only selected application.
3 Comments
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.
Comments
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.