I will try to add all the code that might be helpful but please ask if somethings missing!!
setContentView(R.layout.weeklytext); //this is only a TextSwitcher
gestureDetector = new GestureDetector(new MyGestureDetector());
textSwitcher = (TextSwitcher)findViewById(R.id.switcher);
tv = new TextView(this);
textSwitcher.addView(tv); //example code... I add two TextViews and style them
setContentView(textSwitcher);
When the user flings the TextSwitcher it changes to the next TextView... How would I add a ScrollView so that when the TextView is to long the user can scroll?
I have tried all sorts of stuff but I can't get it to work with the Gestures: Glitchly scrolling, Forcecloses or it ignores any scrolling code I added!!
Thanks! Lorenz
edit: could I somehow use onScroll() from http://developer.android.com/reference/android/view/GestureDetector.OnGestureListener.html I currently don't know how to check if scrolling up or down and would have to somehow get the speed the user is scrolling...