スイッチウィジェットでサウンドをアクティブにしようとしているので、オフにすることもできます。数秒後に自動的にシャットダウンしたいのですが。s.performClick();
私が抱えている問題を解決する方法を知っている人は誰でもアプリがクラッシュしますが、すべてが機能 しますか?
ここにフラグメントの完全なコードがあります。
public static class Therapy extends Fragment implements CompoundButton.OnCheckedChangeListener{
MediaPlayer player = null;
Switch s;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.therapy, container, false);
Switch s = (Switch)v.findViewById(R.id.switch1);
s.setOnCheckedChangeListener(this);
return v;
}
class MyTimerTask extends TimerTask {
public void run() {
s.performClick();
}
}
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
player = MediaPlayer.create(getActivity(), R.raw.bird1);
player.setLooping(true);
player.start();
MyTimerTask myTask = new MyTimerTask();
Timer myTimer = new Timer();
myTimer.schedule(myTask, 1000);
} else {
player.stop();
player.release();
}
}