package net.androidbootcamp.guessinggame;
import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class setting extends Activity {
@Override
public void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.settings);
Button s =(Button) findViewById(R.id.btnons);
s.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
MediaPlayer mp = MediaPlayer.create(setting.this,R.raw.meow);
mp.start();
}
});
Button ss =(Button) findViewById(R.id.btnoffs);
ss.setOnClickListener(new OnClickListener(){
如何对关闭按钮进行编码。这是我的打开按钮代码。我不知道如何在单击另一个按钮(关闭)时停止声音。
I have two buttons, the ON and OFF button,a normal game settings of sound.
我不知道接下来会发生什么。每次单击OFF按钮时,我都想停止停止。