An Android widget that allows scrolling of its only child if it is too big for the screen's visible area.
1
vote
0answers
27 views
ListView with a parallax scrolling top layer
I need to implement a scrolling layout which is loaded with images from an Adapter, and another scrolling layout on top of it that contains text labels of individual images. The top layer should ...
0
votes
3answers
34 views
Scroll not display at right in TextView
I have a Textview in xml in which I define Scrollbar,
I also set padding and Background in TextView, But problem is that scrollbar is not displaying at right side, if we have paddingRight = 20dp then ...
0
votes
0answers
21 views
There is no scrolling and no onclick , for a scroll view inside a custom adapter for a list view
What i have :
i have a listView in which , i am using custom adapter . custom adapter is a resource for views inside listView (https://www.dropbox.com/s/lty9abmss7uq2aw/Untitled_1.png)
what i want ...
0
votes
0answers
11 views
ScrollView focusability problems
I have a ScrollView 2*H high (H - is height of my activity). On the bottom of it I have a ListView H - 48dp high.
When I scroll to the bottom of the ScrollView i want and touch a ListView I want ...
0
votes
0answers
27 views
Issue with ListView scroll up & scroll down
I have a paginated list.
On upward scroll, I want to load previous page from server at top of the list.And on downward scroll it will load the next page from server at end of the list.
There is a ...
0
votes
2answers
29 views
Scrollview extends beyond screen bottom
I suddenly have the problem that Scrollview extends beyond the bottom of the screen so that even if you scroll all the way down it does not show all its content. The XML is:
<?xml version="1.0" ...
0
votes
0answers
19 views
0
votes
1answer
28 views
Set custom rounded scrollbarThumbVertical outside scrollbarTrackVertical android
The three xml files below is my custom scrollbar. I want to set seek_bar_thumboutsite.xml outside scroll.xml.
style.xml
<style name="scroll">
<item ...
0
votes
1answer
11 views
How to know the vertical scrolling direction in android i.e. upward or downward
Is there any way to determine that Android (vertical) scroll-view is scrolled upward or downward. I actually have a scenario to implement it.
1
vote
1answer
28 views
Robotium cannot getText(string) from textviews that are not visible from very top or very bottom of scrollView
Robotium 4.1 doesn't seem to have any features (that work with ScrollView rather than ListView objects) that scroll to a certain point and then stop. My problem is that I need to receive the text from ...
0
votes
0answers
52 views
android NullPointerException using ScrollView
Hi i have this scrollView(specifically TolerantScrollView.java). It contains a MultiColumnListView view (a 2 column listview like pinterest with an adapter) the problem is on some
phone the ...
0
votes
0answers
15 views
Unable to scroll Up completely in a scrollView when Software Keyboard is up
I am developing a full screen Android application, and here is the weird problem I am facing:
I am unable to scroll the scrollView completely when the software keyboard is up.No problem if the ...
0
votes
0answers
35 views
Android ScrollView not vertically filling layout on device
This is quite strange. I have a set of tabs, and on one (well really two but they are the same thing with slightly different content) is acting up. I have two XML files. One is for landscape and it ...
0
votes
0answers
72 views
ScrollView contains ViewPager and ExpandListView - Android
I have a LinearLayout contains a ViewPager and an ExpandableListView in vertical.
I put all them in a ScrollView. Now ScrollView contains a LinearLayout (ViewPager + ExpandableListView).
But ...
3
votes
1answer
120 views
Customizing Android ScrollView's Vertical Scrollbar
I need to customize ScrollView so it will look like in the picture:
I already successfully customized the Thumb and the Track, but I don't know how to add Arrows like in the picture I provided.
Here ...