Intent with Countdown crashes android app -
my android app crashes when reaches countdown 0 . below part of code related it. final countdowntimer countdown=new countdowntimer(60000, 1000){ public void ontick(long millisuntilfinished) { tvtime.settext((millisuntilfinished / 1000)+"'s"); } public void onfinish() { try{ tvtime.settext("time over"); this.cancel(); toast.maketext(getapplicationcontext(),"answer: "+ originalword, toast.length_long).show(); intent i=new intent(lastjumble.this,scorecard.class); i.putextra("username",username); i.putextra("totalques", totalques); i.putextra("count", count); startactivity(i); } catch (exception e) { // todo: handle exception } ...