当我点击“startButton”时,我的应用程序一直崩溃。我想问题是在onTouch方法中的某个地方,但我已经尝试解决了几个小时的问题;禁用startButton.setOnTouchListener
内的不同内容并没有什么不同。你能找到什么问题吗?
MediaPlayer mp;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
final Button startButton = (Button) this.findViewById(R.id.button1);
final TextView timeLeft = (TextView) this.findViewById(R.id.timeLeft);
MediaPlayer.create(getBaseContext(), R.raw.songthingy);
startButton.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
mp.start();
timeLeft.setText("Status: Initiated");
startButton.setText("Stop");
startButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
mp.release();
}
});
new CountDownTimer(30000, 1000) {
public void onTick(long millisUntilFinished) {
timeLeft.setText("Status: Starting in... "
+ millisUntilFinished / 1000);
}
public void onFinish() {
timeLeft.setText("Status: Finished");
}
}.start();
mp.setOnCompletionListener(new OnCompletionListener() {
@Override
public void onCompletion(MediaPlayer mp) {
mp.release();
}
});
}
;
return true;
}
});
}
答案 0 :(得分:1)
没有问题的异常堆栈,但我看到的一个问题是:
MediaPlayer mp;
指向null
,您正在调用
mp.start();
OnTouchListener
中的,结果为NullPointerException
。
我认为你需要做的是:
final TextView timeLeft = (TextView) this.findViewById(R.id.timeLeft);
mp= MediaPlayer.create(getBaseContext(), R.raw.songthingy);