I'm fairly new to Android development, having come over from spending a couple of years on BlackBerry dev. So please excuse me if I mix up any terminology.
I have an activity which contains a ScrollView and a LinearLayout. At run-time I'm filling the LinearLayout with a combination of TextView, and Custom View objects. The ScrollView then provides vertical scrolling as expected when the views go past the bottom of the screen.
The custom view object displays a section of a potentially wider than screen bitmap. I have implemented touch events in my custom view object to provide horizontal scrolling of the image. This also works as expected.
The problem that occurs is that when I touch and scroll within my custom view area, occasionally all of the TextView objects on the screen are turning solid black. The custom view objects on the screen are still drawn correctly. Scrolling the screen vertically restores the TextView objects to their expected appearance. The textviews will flicker between black and normal as I scroll around my custom view. If I catch it while they are black and stop touching the screen, they stay black until I scroll the scrollview.
I thought this was the scrollview messing with me when I moved vertically within my custom view. However, I have tried several things from this forum, such as calling getParent().requestDisallowInterceptTouchEvent(true) while i'm handling the touch event, but this does not seem to help.
I found that if I do not call "invalidate()" after the touch move event, the problem does not occur. However, my custom view of course does not update effectively during scrolling.
I hope that all made sense. Any thoughts? I'm stumped so far.
Thanks.