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
How to enable fast scrolling to "EditText Field" in android application
1.3k Views Asked by John Kiran At
3
There are 3 best solutions below
0
Salah
On
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>
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in ANDROID-EDITTEXT
- FloatingActionButton doesnt change EditText item in the LIstView
- EditText not taking input in Android?
- How to restrict EditText decimals to two? (Android studio/Kotlin)
- How can I have one recyclerview element using datas from another page?
- how to make an EditText fully visible when opening the soft keyboard
- EditText with maxLines - how to show half of top line
- Android how to create an edittext that look like google login edittext
- Can not type in edittext android due to associated arraylist
- Suggestion text is not displaying in android keyboard
- Bold text is lost in edittext (android app)
- Why Edit text input fill all the other edit texts when navigate to other screen and then come back?
- Android 14 EditText required double click to enter text if hard keyboard is attached
- How to change background color Edittext error box
- Android : How do I know if the adb shell input text is completed?
- Android: outer EditText border stroke
Related Questions in ANDROID-SCROLL
- Jetpack Compose. How to scroll to specific BasicTextField?
- Minimal working example of using Android's OverScroller class?
- How to center elements in Column with vertical scroll?
- How to prevent LazyColumn from autoscrolling if the first item was moved
- How to achieve nested scrolling of WebViews in a RecyclerView?
- How to scroll Jetpack Compose screen that overflows its contents?
- How to make a TextView scrollable in a fragment?
- There is no way to prevent ScrollView from automatically scrolling when TextView is focused?
- Motion layout with RecyclerView, scroll at the end of recyclerview
- Overscroll effect is not displayed correctly in NestedScrollView with RecyclerView inside
- Recyclerview measure scroll distance to disable keyboard
- Android Jetpack Navigation Disable Scroll Position
- How to make last item scroll all the way to the top of RecyclerView
- Appium can't scroll in Android App when starting on clickable element
- Auto smooth scrolling in Recycler view
Related Questions in ANDROID-SCROLLBAR
- ScrollView on Set Change listener
- dataSetChanged in List Adapter displays scrollbars in Recycler View each time
- Draw scrollbar over RecyclerView.ItemDecoration sticky header
- How to set the attribute "android:scrollbars" programmatically for a view in Xamarin Android C#?
- scrollbar moves rough when activating fastscrollenable in android listview
- Keep fast-scroll bar in recyclerview from fading
- How to make recyclerview scrollbar always visible?
- How to change width of track for horizontal scrollbar?
- Android How to change scrollbar color in Spinner
- ListView scrollbarStyle not working properly in a Widget
- Android official alphabet fast scroll view
- Scrollbar on Top Side in Horizontal RecyclerView
- How to define position of scrollbar view inside recyclerview?
- ScrollBarStyle didn't show in apps
- Hide scrollbars in complete application
Related Questions in ANDROID-SCROLLING
- Use coordinator layout to create horizontally scrollable toolbar section headers that scroll to position in recyclerview [Android]
- I'm unable to scroll horizontally in my project
- How stop recycler view scroll when reach last item in the bottom of screen that view pager inside coordinate layout with appbar layout?
- Android scrolling canceles Webview move events
- Is there a way to get how far a user has scrolled on a recyclerView?
- Horizontal scrolling breaking the table layout
- Android ScrollView remove border
- Android RecyclerView scroll to specific word
- Append from multiple sources to adapter list on scrolling down
- Circular scrolling with View Pager
- Two-way scrolling with RecyclerView
- Android: updating an item in a ListView that survives scrolling
- How to make scrollview extend beyond screensize android?
- How detect when we were dragging ListView edges?
- Customized View with Horizontal Scroll
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think you're looking for this:
and this to "jump" in listView:
http://developer.android.com/reference/android/widget/SectionIndexer.html
Source: Android: Scrollbar Accelerator?