What I want to do in my application: 1. When the user opens the application, he will be able to see the already running countdown timer. Therefore, in this case, I want to show the countdown numbers in text form, which will always be updated every second. 2. The user will be able to stop him. 3. The user can leave the application, but the countdown should continue and show the updated time when he returns to the user interface of the application.
So, based on the above points, I understand that I need to implement a Service that runs in the background. I read this link, but my problem is implementation related. I absolutely do not understand how to implement this. However, I also can’t come up with a way to show the time in the user interface as soon as the user returns to the application. I also saw this link , but I'm not sure that only the implementation of CountDownTimer makes it a running service. So, how should I continue and implement it? Any links to specific tutorials / codes are welcome. Thanks.
UPDATES: I could still do the following: MainActivity.java
public class MainActivity extends Activity { Button btnStart,btnStop; Intent serviceIntent; TextView tv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btnStart = (Button) findViewById(R.id.btnStart); btnStop = (Button) findViewById(R.id.btnStop); tv = (TextView) findViewById(R.id.timeView); //final MyCounter timer = new MyCounter(100000,1000); //tv.setText("100"); //timer.start(); serviceIntent = new Intent(MainActivity.this,MyService.class); btnStart.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub startService(serviceIntent); } }); btnStop.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub stopService(serviceIntent); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; }
MyService.java:
public class MyService extends Service { MyCounter timer; @Override public void onCreate() { // TODO Auto-generated method stub timer = new MyCounter(100000,1000); super.onCreate(); } @Override public int onStartCommand(Intent intent, int flags, int startId) { // TODO Auto-generated method stub timer.start(); return super.onStartCommand(intent, flags, startId); } private class MyCounter extends CountDownTimer{ public MyCounter(long millisInFuture, long countDownInterval) { super(millisInFuture, countDownInterval); } @Override public void onFinish() { Toast.makeText(getApplicationContext(), "death", Toast.LENGTH_LONG).show(); stopSelf(); } @Override public void onTick(long millisUntilFinished) { Toast.makeText(getApplicationContext(), (millisUntilFinished/1000)+"", Toast.LENGTH_SHORT).show(); } } @Override public void onDestroy() { // TODO Auto-generated method stub timer.cancel(); //stopSelf(); super.onDestroy(); } @Override public IBinder onBind(Intent arg0) { // TODO Auto-generated method stub return null; } }
The problem is this: 1. I do not know how to show the countdown from the MainActivity interface other than this Toast. 2. It does not stop counting when I click the Stop button.
Arefin
source share