Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to adjust editor scrolling in Android Studio

I am using Android Studio 1.5.1 on Windows 7 Home Premium 64 bits.

When I scroll in a text editor window (like editing my MainActivity.java) it jumps 10 lines ahead (or back).

That's just too much scrolling for me.

I've already messed with the Settings/Editor/General/Scrolling options without any success. "Smooth Scrolling" has no effect on that.

I would like to change the scrolling for, like 1 line as I usually have in other windows applications, like windows explorer.

like image 251
Marcello Silva Avatar asked Mar 13 '16 14:03

Marcello Silva


People also ask

How to make a scroll view in Android Studio?

To add multiple views within the scroll view, make the direct child you add a view group, for example LinearLayout , and place additional views within that LinearLayout. Scroll view supports vertical scrolling only. For horizontal scrolling, use HorizontalScrollView instead.

How to implement scroll view in Android?

In order to place multiple views in the scroll view, one needs to make a view group(like LinearLayout) as a direct child and then we can define many views inside it. A ScrollView supports Vertical scrolling only, so in order to create a horizontally scrollable view, HorizontalScrollView is used.

What is ScrollView explain with example?

ScrollView is used to scroll the child elements of palette inside ScrollView. Android supports vertical scroll view as default scroll view. Vertical ScrollView scrolls elements vertically. Android uses HorizontalScrollView for horizontal ScrollView.


1 Answers

What you are looking for is: Appearance & Behavior -> Appearance -> (window options - smooth scrolling). This will fix your side editor tabs.

like image 89
stegnerd Avatar answered Oct 14 '22 03:10

stegnerd