SurfaceViewについて

描画処理を高速で行う為に使用するSurfaceViewですが

なかなかうまく動作せず、最終的にSurfaceViewを継承したクラスをnewしてセットすることで解決できました。

public class foobar extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.main);
        setContentView( new mySurfaceView(this) );
        //↑これで問題なく動作した
    }
}