Back to project page study-android-fallballgame.
The source code is released under:
Apache License
If you think the Android project study-android-fallballgame listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package jp.hym.falingballgamge; // www .j a v a 2 s . c o m import android.app.Activity; import android.content.Context; import android.support.v4.app.FragmentActivity; import android.util.Log; import android.view.SurfaceHolder; import android.view.SurfaceView; public class GameSurface extends SurfaceView{ private HolderCallBack cb; public GameSurface(FragmentActivity context){ super(context); SurfaceHolder holder = getHolder(); cb = new HolderCallBack(context); holder.addCallback(cb); } }