hide/snooze future tasks in google tasks
- By marden
- Apps & Games
- 0 Replies
Is it possible to hide/snooze tasks that are due in the future, so I don't have to see a list of all the things I don't have to take care of right now?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class A extends AppCompatActivity {
private Chronometer mChronometer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity);
mChronometer = findViewById(R.id.chronometer);
mChronometer.setBase(SystemClock.elapsedRealtime());
}
public void startTimer(){
// This method is start using Fragment.
mChronometer.start();
}
}
