Is there any way I can increase my EditText's scrolling? I want to make it scroll like it does on the web browse, smooth and fast. Is this possible?
Thanks, Alex.
Is there any way I can increase my EditText's scrolling? I want to make it scroll like it does on the web browse, smooth and fast. Is this possible?
Thanks, Alex.
A better description of the current and desired behaviour would be good, however you might get the desired behaviour by embedding in a ScrollView.
You could create a
CustomEditText extends EditText
class and override theonTouch
andonTouchEvent
methods and use these to detect gestures and then move the contents up or down.Webview uses Smooth scrolling. A scroll view also have this property.
Enable Smooth Scrolling using the below method,
Control the smooth scrolling by specifying bounds for the scroll, using the below method...
You can also imitate the overscroll behavior using the following Method,
Also you can add Fling Action using the following method,..