scroller

Nested scroller not working

A sample app where the scroller does not show up. Is there any sane way of using a scroller in a constrain based layout? <?xml version="1.0" encoding="utf-8"?> <s:HGroup left="0" right="0" top="0" bottom="0"> <s:Scroller left="0" right="0" top="0" bottom="0"> <s:VGroup> ...

Android - How can i get a scrollView to scroll automatically at a definable rate?

I am writing a teleprompter app for the Android and i am trying to get the script to automatically scroll at a definable rate. I have attempted to do so by extending Scrollview and writing a new SmoothScrollBy function. Here is my code. Custom ScrollView: import android.content.Context; import android.util.AttributeSet; import android....