Top "Android-scrollview" questions

An Android widget that allows scrolling of its only child if it is too big for the screen's visible area.

How to prevent a scrollview from scrolling to a webview after data is loaded?

So I have a fascinating problem. Despite the fact that I'm not manually or programmatically scrolling my view, my WebView …

android android-layout android-webview android-viewpager android-scrollview
RelativeLayout - Scroll down

I have the following layout: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:id="@+navigate/RLayout" android:layout_width="…

android android-scrollview android-relativelayout
how to make an android view scrollable when the keyboard appears?

I have a view with some fields (name, email, password, register button) : <ScrollView xmlns:android="http://schemas.android.com/…

android android-layout android-scrollview android-keypad
ViewPager inside ScrollView - vertical scroll doesn't work

So, I have this ScrollView with one child - a LinearLayout that has two children: a TextView and a ViewPager. …

android android-fragments android-viewpager android-scrollview
How can I change the width/thickness of a scrollbar?

Currently this is my scrollbar.xml file: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.…

android scrollbar android-scrollview android-scrollbar
When using the CoordinatorLayout my ScrollView has an incorrect size

I'm using a ScrollView in a layout, and am attempting to use the new CoordinatorLayout from the design support library. …

android android-support-library material-design android-scrollview android-design-library
EditText not scrollable inside ScrollView

I have a ScrollView inside which is an EditText which is set to scroll vertically. But it does not scrolls. …

android android-layout android-edittext android-view android-scrollview
Large gap forms between RecyclerView items when scrolling down

I'm making a ToDo list app, and while testing it, for some reason, a huge gap forms between the items …

android android-recyclerview android-scrollview
how to disable recycler view scrolling so that it listens to Scrollview layout?

I have a recycler view inside a ScrollView. I want to disable the recycler view scroll so that it listens …

android android-scrollview android-recyclerview
Detect swipe using onTouchListener in ScrollView

I'm using the following code to detect swipe in my Activity: getWindow().getDecorView().getRootView().setOnTouchListener(new OnTouchListener() { @Override public boolean …

android android-scrollview android-gesture