私は次のクラスを持っています
public class GameActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
View gameView = new GameView(this);
setContentView(gameView);
}
}
そして今、クラス GameView にボタンを追加したいと思います。
public GameView(Context context) {
super(context);
// Code ...
}
ゲーム中にこのボタンが必要なので、描画している他のすべてのキャンバスの前に配置する必要があります。
どうやってやるの?