我想用onclick同时使用2种方法,但方法" deleteNotification()"在" buttonPause()"之前工作。只需双击按钮即可获得第二种方法...... 你能帮我吗?“
这是我的代码:
btn_play.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (!playPause) {
buttonPause();
deleteNotification();
}
private void buttonPause(){
btn_play.setBackgroundResource(R.drawable.ic_pausevt);
mediaPlayer.start();
playPause = true;
}
private void deleteNotification(){
final NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
//la suppression de la notification se fait grâce a son ID
notificationManager.cancel(NOTIFICATION_ID);
}