Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Horizontall scroll in android studio

I am using macbook pro 13" and running windows 8.1 on it (Bootcamp). I installed android studio (IDE for developing android app). I am wondering on how can i scroll horizontally (left to right or right to left via touchpad or magic mouse) on the IDE - editor itself?? Just like in Visual studio, i can just use my two finger and swipe left to right to scroll the editor for touchpad and magic mouse from left to right as well.

Screenshot scroll the editor horizontal via touchpad or magic mouse

like image 636
heyou Avatar asked Oct 27 '15 14:10

heyou


People also ask

How do I add a horizontal scroll view?

In Android ScrollView allows multiple views that are places within the parent view group to be scrolled. Scrolling in the android application can be done in two ways either Vertically or Horizontally. In this article, we will be discussing how to create a Horizontal ScrollView in Kotlin .

What is the difference between ScrollView and horizontal ScrollView in Android?

Attributes Of Scroll View: ScrollView and HorizontalScrollView has same attributes, the only difference is scrollView scroll the child items in vertical direction while horizontal scroll view scroll the child items in horizontal direction.

What is scroll layout Android?

In Android, a ScrollView is a view group that is used to make vertically scrollable views. A scroll view contains a single direct child only. 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.


1 Answers

The lack of support for touchpad/mouse horizontal scrolling was added to the issue tracker.

Until it's fixed, you can use this shortcut: Shift + Mouse Scroll

Source

like image 149
Darek Kay Avatar answered Sep 23 '22 20:09

Darek Kay