I am new for android application development.
In my application i need to listen the every day system date change in background , How to do this,can any one guide me with code.
your response will be appreciated......
I am new for android application development.
In my application i need to listen the every day system date change in background , How to do this,can any one guide me with code.
your response will be appreciated......
Declare Globle Variable
public static String TODAY_DATE;
Just Do below code in your MainActivity in onCreate Method
TODAY_DATE = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new java.util.Date());
It will return system date every day