Tagged Questions
0
votes
0answers
29 views
NumberPicker on ScrollView doesn't scroll on Android 4.0.4
I am trying to use Number picker on activity with parent as Scrollview. Since there are two number pickers arranged vertically. But number picker doesn't scroll properly on Android 4.0.4; though it ...
0
votes
0answers
33 views
Android ScrollView Scrollbar Hidden
I have a scrollview in my Android app. The Scrollview is inside a linearlayout with padding of 10. For some reason, the vertical scrollbar does not show up and is hidden behind the padding. Is there a ...
0
votes
0answers
28 views
Android ScrollView inside TabHost
I'm looking to have 2 tabs each of which I can scroll down inside. My current implementation has the tabs appearing but my ScrollView for whatever reason is placed on top of the tabs not allowing me ...
0
votes
1answer
46 views
Can we lock top and bottom view in a layout while we are using scrollview
I am implementing a data entry screen with few fields.In ScrollView for better view(Visibility) in small devices.
In that activity i want to LOCK both Heading(textView1) and bottom ...
1
vote
0answers
69 views
How to Add ScrollView to GLSurfaceview in Opengl ES2.0 in Android
I am developing one Auto-cad App in OpenGLES2.0 in Android.I want to add pan functionality.thats why,I achieve this pan function like this.[Pan Functionality --just drag the GLSurfaceview to top, ...
0
votes
2answers
51 views
Scrollable Textview inside AlertDialog [Android]
I want to have a scrollable textview inside an Alertdialog. This is my xml for the scrollview which I inflate inside the alertDialog. I keep getting this error "IllegalStateException: The specified ...
0
votes
1answer
47 views
Android scrollview as listitem
I have a listview that has custom child items. Each list item has scrollview inside. Its not good practice to put scrollview inside listview but my requirement is like that.
Example: I have a ...
0
votes
1answer
42 views
Unable to see last item in ScrollView
I am drawing scroll view with static Button.But Button is overlapping with static button.
So i am unable to access all items in the activity.
But i want to draw OK button always.but i am unable to ...
0
votes
2answers
55 views
i am unable to lock some part of the screen while using “Scroll View”
i am implementing one data enter screen with many fields.so that i am using scrolling view in my layout.But i want to draw OK button always.but i am unable to lock the some part of the screen.
i need ...
0
votes
0answers
35 views
Alphabetical scrolling in android
I know this question has been repeated several times here on SO. I've gone through almost all of 'em. Out of all those, I finally implemented this solution. Now this seems to work alright. But it ...
3
votes
1answer
46 views
How to know whether View inside Scroll is Visible completely or no
There is scroll view between header(at the top of screen) and Tabs(Bottom of the screen). I want to know that whether the ImageView which is inside the ScrollView is fully visible or not on phone ...
0
votes
1answer
52 views
Pass motionEvent from one scrollView to another
I have a tricky situation here. I have two scrollviews one below the other. As expected the one on top gets the events. What I want to achieve is that when the one on top reaches the end, I want to ...
0
votes
0answers
43 views
ScrollView: Stop “flinging” at a specific point
I want my ScrollView to stop scrolling at a specific point, if it has been flinged. However, it should be possible to scroll above that point by dragging the ScrollView.
I created a listener that ...
0
votes
1answer
288 views
how to create a bouncable scrollview with header in android?
I want a bouncable scrollview (iPhone like) in my project. I find some articles about overscroll and use it like This class here. But i dont know how to set over scroll view as its header.
I also ...
0
votes
1answer
100 views
how can I make footer visible,only if ScrollView is scrolled down?
If the ScrollView is scrolled down it has to show the footer. If its scrolled up, then footer has to disable. how to do this kinda stuff?