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 answers
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
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in ANDROID-EDITTEXT
- Layout not shifting up when keyboard is open
- Android: EditText in ScrollView goes of the screen when kayboard appears
- Android EditText Symbol must remain at initial position
- Scrollable Edittext in Listview in android
- Change font of the floating label EditText and TextInputLayout
- Want to format numbers greater than 20 digits in java?
- Android Focus issue between EditText and CheckBox
- Android setEllipsize not working on class that extends EditText
- IME_ACTION_DONE seems to destroy the View.OnKeyListener on Android
- Unable to enter text in edit text view
- Android: Intentionally Blank Lines in EditText Are Not Getting Saved
- android java search listview clickedItem
- How to create editext boarder line in Android
- How to implement Android EditText view Floating Hint in Material Design in Eclipse?
- android EditText maxLength not working
Related Questions in ANDROID-SCROLL
- What does setScrollingCacheEnabled(); do?
- How to scroll recyclerview based on another one
- Prevent GridView from scrolling on onConfigurationChanged
- Android: How to touch a scrollview and show its scroll bar for 2 seconds?
- ScrollBar doesnt work in EditText
- Phonegap: Image size and keypad issue
- Samsung galaxy not displaying menu
- Android ListView - change default LinearInterpolator used in programmatic smooth scrolling
- Don't scroll on ListView
- Where does Android View.scrollTo(x, y) scroll to?
- Event when scrolling is done
- Motion layout with RecyclerView, scroll at the end of recyclerview
- How to find that particular View Section of ListView is Visible from 3 seconds
- How to use Scroll View In Android
- Getting current scroll position using Scroller object
Related Questions in ANDROID-SCROLLBAR
- Overflow-x:hidden not working w/ Android (Samsung Epic) and possibly others
- smooth horizontal scrolling in webview
- StickyGridHeaders bug when used inside RelativeLayout
- Android: How to touch a scrollview and show its scroll bar for 2 seconds?
- How can I change the width/thickness of a scrollbar?
- ScrollBar doesnt work in EditText
- Need to Scroll the view into RelativeLayout in a new Window in android
- Scrollbar not showing in RecyclerView
- Android listview scrollbar on top of list items
- How to make the `scrollbar` appear on the left side?
- Custom view scrollbars
- Where do I find the nine (9) patch png file for Android's default scroll thumb?
- Is it possible to disable all scrolling and zooming in an android webview?
- Android honeycomb fast scrollbar inside the ListView?
- How to make table rows scrollable in android
Related Questions in ANDROID-SCROLLING
- Use coordinator layout to create horizontally scrollable toolbar section headers that scroll to position in recyclerview [Android]
- Two-way scrolling with RecyclerView
- I'm unable to scroll horizontally in my project
- Android: updating an item in a ListView that survives scrolling
- How to enable fast scrolling to "EditText Field" in android application
- Customized View with Horizontal Scroll
- Circular scrolling with View Pager
- Android RecyclerView scroll to specific word
- Append from multiple sources to adapter list on scrolling down
- Horizontal scrolling breaking the table layout
- Is there a way to get how far a user has scrolled on a recyclerView?
- Android scrolling canceles Webview move events
- How stop recycler view scroll when reach last item in the bottom of screen that view pager inside coordinate layout with appbar layout?
- ListView getting displayed, but App crashes on Scrolling and clicking
- How to make scrollview extend beyond screensize android?
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?
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)
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?