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
Asked
Active
Viewed 1,231 times
0
-
possible duplicate of [Android: Scrollbar Accelerator?](http://stackoverflow.com/questions/7563660/android-scrollbar-accelerator) – StephenG Jul 28 '15 at 21:19
-
no such attribute found in EditText – John Kiran Jul 29 '15 at 07:19
3 Answers
0
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?
0
put the text box in a scrollview so that you move the textfield around and not the cursor in the text
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<TextView
android:id="@+id/YourText"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</ScrollView>

Salah
- 139
- 1
- 4