Note that there are some explanatory texts on larger screens.

plurals
  1. POTimer reset after screenlock
    primarykey
    data
    text
    <p>I've created a small app with a countdown timer for poker blind, but I've noticed that when the lockscreen is on, the timer will reset from start.</p> <p>How can I resolve this?</p> <p>This is the code of the class:</p> <pre><code>public class timer extends Activity { /** Called when the activity is first created. */ TextView contoallarovescia; TextView clicca; public boolean touchattivo=false; public int giro=1; public int girosecondi=8*60; @Override public void onCreate(Bundle savedInstanceState) { this.requestWindowFeature(Window.FEATURE_NO_TITLE); super.onCreate(savedInstanceState); setContentView(R.layout.timer); contoallarovescia = (TextView) this.findViewById(R.id.contoallarovescia); Typeface typeFace=Typeface.createFromAsset(getAssets(),"font/LCDMB___.TTF"); contoallarovescia.setTypeface(typeFace); clicca = (TextView) this.findViewById(R.id.clicca); chiamatimer(girosecondi*1000,1000); } @Override public boolean onTouchEvent(MotionEvent event) { // MotionEvent object holds X-Y values if (touchattivo) { chiamatimer(girosecondi*1000,1000); } return super.onTouchEvent(event); } public void chiamatimer(int secondi, int ciclo) { touchattivo=false; clicca.setVisibility(View.INVISIBLE); new CountDownTimer(secondi, ciclo) { public void onTick(long millisUntilFinished) { int sec =(int) (millisUntilFinished / 1000); String result = String.format("%02d:%02d", sec / 60, sec % 60); contoallarovescia.setText(result); } public void onFinish() { String result = String.format("%02d:%02d", 0, 0); giro++; if (giro==5) { girosecondi=6*60; } contoallarovescia.setText(result); clicca.setVisibility(View.VISIBLE); touchattivo=true; try { Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification); r.play(); } catch (Exception e) {} } }.start(); } } </code></pre> <p>Tnx!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload