is it possible to use a ScrollView with a GraphicsView? I tried something like this:
Using java Syntax Highlighting
- GraphicsView gv = new GraphicsView(this);
- ScrollView sv = new ScrollView(this);
- sv.addView(gv);
- setContentView(sv);
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
but the screen remains blank. The class GraphicsView is implemented and the onDraw Method draws somenthing on the screen (and some graphics out of Screen i wanted to scroll to). SetContentView(gv) works great. What is wrong, can i use ScrollView with GraphicsView? Or should i use an other View (SurfaceView)?
Thx for any comments


