我有这个扩展视图的类,我想在下面的方法中添加声音。通常我用以下方法添加按钮声音。这个类是一个可绘制的画布,它向我显示一条红线,但没有迹象表明我需要改变什么。那么我怎样才能在下面的方法中添加声音?我在一个不同的活动中呼唤我的观点。提前谢谢。
ui-router
答案 0 :(得分:0)
class GameActivity extends Activity {
DrawGame game = new DrawGame();
game.setContext(this);
}
class DrawGame {
Context context;
public void setContext(Context context) {
this.context = context;
}
if(checkCorrect == goal) {
MediaPlayer mediaPlayer = MediaPlayer.create(context,R.raw.button);
mediaPlayer.start();
score += 10;
newGoal = true;
}
}