アプリケーションのスプラッシュ画面があり、起動時にmp3クリップを再生します。
アプリの設定メニューからサウンドを無効/有効にするオプションをユーザーに提供したいと思います。ユーザーがアプリを開くたびにユーザーの設定をアプリケーションが記憶するように、これを実装するにはどうすればよいですか。
サウンドについては、以下の私のコードを参照してください。
public class Splash extends SherlockActivity {
SoundPool sp;
int explosion = 0;
MediaPlayer mp;
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.splash);
sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
explosion = sp.load(this, R.raw.soundfile, 1);
Thread timer = new Thread() {
public void run() {
try {
sleep(5000);
if (explosion != 0)
sp.play(explosion, 1, 1, 0, 0, 1);
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
Intent openMenu = new Intent(
"ttj.android.t3w.STARTINGPOINT");
startActivity(openMenu);
}
}
};
timer.start();
}