代码之家  ›  专栏  ›  技术社区  ›  Zekirak

在应用程序的生存期内保持值-暂停/恢复倒计时计时器

  •  0
  • Zekirak  · 技术社区  · 8 年前

    我想创建一个倒计时,这样当应用程序完全关闭时,倒计时计时器就会暂停并保存。当应用程序再次打开时,倒计时将从停止的位置恢复。 我的想法是在应用程序关闭时将值“millisUntilFinished”保存在“onStop”中,在“onResume”中打开应用程序时继续倒计时。

    我倒计时的代码:

    public class MainActivity extends Activity {
        Button b1;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    
        b1 = (Button) findViewById(R.id.b1);
    }
    
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu
        // this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }
    
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
    
        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }
    
        return super.onOptionsItemSelected(item);
    }
    
    public void a(View view){
        new CountDownTimer(10000, 1000) {
            public void onTick(long millisUntilFinished) {
                tv1.setText("La cuenta llega a 0 en: " + millisUntilFinished / 1000);
            }
            public void onFinish() {
                tv1.setText("Listo!");
            }
        }.start();
    }
    
    1 回复  |  直到 8 年前
        1
  •  1
  •   Tony    8 年前

    使用 SharedPreferences .

    onResume(){
       SharedPreferences prefs = 
             getSharedPreferences("PREF_NAME", MODE_PRIVATE); 
       int startTime = prefs.getInt("PAUSED_TIME", 0); //0 is the default value.
    
    }
    
    onPause(){
       SharedPreferences.Editor editor = 
                getSharedPreferences("PREF_NAME", MODE_PRIVATE).edit();
       editor.putInt("PAUSED_TIME", time);
       editor.commit();
    }