Questions tagged [android-scrolling]

17 questions
10
votes
3 answers

Circular scrolling with View Pager

We have a requirement for sycing rotating wheel with sliding images. I have used ViewPager for it but after 360 degree rotation I have to start scrolling ViewPager from X = 0. Is there any ViewPager which starts from first page after scrolled to…
4
votes
2 answers

Two-way scrolling with RecyclerView

How do you display a list of item that is very large on one side (either horizontally / vertically), and allow it to be freely scrolled / dragged - like Google Sheets? I've tried using a NestedScrollView with a RecyclerView, but you can only scroll…
2
votes
1 answer

Collapsing toolbar, tabLayout and ViewPager not working properly after scroll

I am trying to create a similar layout for User Profile screen in my app. Here is what I need: 1. The back, plus and image button should be in the toolbar in collapsed as well as expanded state. 2. The toolbar should be transparent in expanded…
1
vote
0 answers

Android scrolling canceles Webview move events

I have Android activity with NestedScrollView and inside it I have Webview with some html and jQuery script.
1
vote
1 answer

Customized View with Horizontal Scroll

I am trying to write a custom View with the ability of scroll horizontally. I have gone through many posts on the forums but I am still unable to get what I want. I want a custom view on which I am plotting the pitch contour of an audio recording.…
Swapnil
  • 1,870
  • 2
  • 23
  • 48
0
votes
0 answers

I'm unable to scroll horizontally in my project

I'm trying to create a story line that stacks horizontally on each other and you can scroll it horizontally from the beginning to the end but when I created it with the code below it didn't work at all. The first line of code stacked it horizontally…
0
votes
0 answers

How stop recycler view scroll when reach last item in the bottom of screen that view pager inside coordinate layout with appbar layout?

I tried to setup view pager inside coordinate layout with appbar layout. And also recycler view inside the viewpager. it is scrolling. Appbar layout has top view in disply. I need to stop scrolling to top like posted image. I putting down to my xml…
0
votes
0 answers

Is there a way to get how far a user has scrolled on a recyclerView?

My question is anchored in my current objective of making a custom scrollbar to scroll various types of views (right now it's a RecyclerView). I decided to try and use a rotated SeekBar instead of multiple ImageViews because the SeekBar seemed…
0
votes
0 answers

Horizontal scrolling breaking the table layout

I use the following TableView library to create a table for my app data: https://github.com/evrencoskun/TableView This library is very good for me, but there is an error in the horizontal scroll when the table data exceeds the screen size. i.e. when…
0
votes
1 answer

Android RecyclerView scroll to specific word

I want to scroll to a specific string or index of text. i get search text position and i want to scroll or focus center of screen to my specific string in RecyclerView I tried to many ways but not solved now i scroll to like this LinearLayoutManager…
user11692314
0
votes
1 answer

Append from multiple sources to adapter list on scrolling down

I have a RecyclerView and it uses a data source to load the items in the adapter in parts as the user scrolls down i.e. kind of "pagination". I need to add items in the list from different data sources and I really can't modify the first data source…
0
votes
1 answer

Android: updating an item in a ListView that survives scrolling

Given a ListActivity with a ListView and the requirement to change an item based on user input, what is the way to make the change so that the change survives scrolling? Currently the application uses a ResourceCursorAdapter populated by a Cursor…
Dale
  • 5,520
  • 4
  • 43
  • 79
0
votes
1 answer

How to make scrollview extend beyond screensize android?

My root element is relative layout, within which I have one LinearLayout wrapped into a scrollview. The LinearLayout has multiple children that include textViews, editText, and other Linearlayouts that have textviews and editText. Looked into…
0
votes
0 answers

How detect when we were dragging ListView edges?

I don't know how to detect when we were dragging ListView edges. https://i.stack.imgur.com/psndx.jpg // edit event1 - listview on panel event2 - main panel event1.setOnTouchListener(new View.OnTouchListener() { @Override public…
dobraprzerwa
  • 186
  • 1
  • 5
0
votes
3 answers

How to enable fast scrolling to "EditText Field" in android application

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
1
2