Tagged Questions
1
vote
1answer
257 views
fading edges working only on top and left
I made a custom ImageView that supports basic scrolling through calls to View.scrollBy() in a GestureDetector. I wanted to add some feedback on the reaching of scrolling bounds so I enabled fading ...
1
vote
2answers
1k views
How to scroll “infinitely” wide view in Android?
I am pondering the alternatives on how to scroll an "infinite", scale-like, control in android. The simple idea is to redraw the entire view on each scroll movement, but somehow it doesn't seem like ...
0
votes
1answer
135 views
How to implement scrolling in Android custom view
I've written a custom view which I'd like to ensure is viewable on any screen size.
I've overridden the onMeasure:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
...