I made some application and I'd like to add notification to user when application going on a background after 1hours.
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
if (!hasFocus) {
new CountDownTimer(1000, 1) {
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
//Timer is ended
}
}.start();
}
super.onWindowFocusChanged(hasFocus);
}
This is my code but I don't know how to make notification..Please help me with full codes.