Questions tagged [android-scrollbar]

96 questions
1
vote
1 answer

StickyGridHeaders bug when used inside RelativeLayout

I am using TonicArtos/StickyGridHeaders library and my StickyGridHeadersGridView is placed inside a RelativeLayout. The problem is, attributes I used in layout XML for StickyGridHeadersGridView is not working because of which ScrollBar is appearing…
Vishal Vyas
  • 2,571
  • 1
  • 22
  • 39
1
vote
1 answer

Turning scrollbar, ListView into timeline slider

I've been seeing this UI technique quite often at Dribbble, mostly demonstrated on iPhone as timeline, and I am really wondering if it's possible to do so on Android. The idea is to exploit scrollbar, make it activate each row it is passing.…
inmyth
  • 8,880
  • 4
  • 47
  • 52
1
vote
1 answer

nice and clean android scroll like this? (with image)

How do I get my android scrollbars looking like this? (see image link). ... I am working on my first Android app. Am new to android and sometimes the simplest things can bee a challenge. Can anyone please point me the right direction. Thanks.
1
vote
1 answer

Custom view scrollbars

I have a custom view and I managed to enable scrollbars on it using this post: Android: Enable Scrollbars on Canvas-Based View. The problem is that I can't scroll them, even though I overrode the compute functions. Here is the code that creates the…
user940016
  • 2,878
  • 7
  • 35
  • 56
1
vote
3 answers

How to bring scroll bar/view in top position?

scrollbar tableLayout My view data /tableLayout /scrollbar I showed the data.. when I m in last row of view, once my UI is updated I want to bring scroll to the top position. What should be code that I need to be done for this action. Thanks in…
Gnanam R
  • 397
  • 1
  • 3
  • 14
0
votes
1 answer

Android: how to show the user which view is active

I have an activity with a WebView. I would like to give the possibility to the user to scroll from one WebView to another WebView (as it's done to Android desktop): with something in the bottom which shows which screen is actually viewed. I have…
Milos Cuculovic
  • 19,631
  • 51
  • 159
  • 265
0
votes
2 answers

How to make table rows scrollable in android

Below given is my layout which is I am using for displaying a table, which have a number of rows. the problem is this table have more no of rows than the screen can contain, so i want rows to be scrollable so that if i scroll down i can reach to…
Romi
  • 4,833
  • 28
  • 81
  • 113
0
votes
1 answer

Android honeycomb fast scrollbar inside the ListView?

I have a ListView with several elements, so I need to use a fast scrollbar from the Android Honeycomb API. I want the fast scrollbar to be on the left side of the list, for that I'm doing…
0
votes
1 answer

Where do I find the nine (9) patch png file for Android's default scroll thumb?

I am looking for the nine (9) patch PNG file that android uses as its default scroll thumb. Also known as that little grey bar on the right that changes shape depending on the amount of content in the ScrollView. I would like to have the file in…
Tyler
  • 19,113
  • 19
  • 94
  • 151
0
votes
0 answers

ScrollView on Set Change listener

I have 5 images arranged horizontally in a scroll view, along with 5 small dots and a scrollbar thumb. and visual representation of the images that users can scroll through horizontally, with navigation dots and a scrollbar to indicate the current…
0
votes
1 answer

dataSetChanged in List Adapter displays scrollbars in Recycler View each time

I have Recycler View (inside SwipeRefreshLayout) with vertical scrollbar with custom thumb color:
0
votes
1 answer

webview without scroll bars in android app

i am trying to load some web pages in web view of my android app. By default when the page gets loaded i want the web page to be within the device screen size, without any scroll bars making to move either horizontally or vertically.Is this…
Siva K
  • 4,968
  • 14
  • 82
  • 161
0
votes
0 answers

Toolbar on top with weightSum

I have a view with a title bar above (RelativeLayout) and below a LinearLayout with weightSum. I used the weightSum because I wanted to distribute the three elements (ImageView, TextView, Button ) 100% contained in the page. Everything works fine,…
0
votes
0 answers

Draw scrollbar over RecyclerView.ItemDecoration sticky header

I am extending RecyclerView.ItemDecoration to define a class that enables a RecyclerView to make header view's sticky when they are at the top of the RecyclerView. For this, I need to override onDrawOver() to draw the sticky header , since I need to…