0

I am using EditText, and it has good amount of matter to scroll and read. Now my problem is, it's scrolling slow. So, i want increase it's scrolling speed. If anyone understood my problem and have solution please respond, Thanks in advance

John Kiran
  • 79
  • 13

2 Answers2

1

I think you're looking for this:

<ListView
 ...
 android:fastScrollEnabled="true"/>

and this to "jump" in listView:

http://developer.android.com/reference/android/widget/SectionIndexer.html

Source: Android: Scrollbar Accelerator?

Community
  • 1
  • 1
StephenG
  • 2,639
  • 1
  • 13
  • 34
1

Just surround the edittext with a scrollview. I tested and works fine.

KYHSGeekCode
  • 766
  • 2
  • 10
  • 24