I am making an app in which i require user to select a time from time picker.The code to get the time picker works fine.I get the time in a string format like "18:24".Now what i want is if user select future time then a toast should be raised. For example
User Selected time from time picker="18:40"
Current Time="18:50"
then toast should be displayed
But this is not happening
Code
public void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 1) {
Calendar c=Calendar.getInstance();
Date currentTime;
String time = data.getStringExtra("TIME");
SimpleDateFormat sdf=new SimpleDateFormat("kk:mm");
try {
Date timeCompare=sdf.parse(time);
currentTime=c.getTime();
if(timeCompare.compareTo(currentTime)==0){
etStartTime.setText(time);
}else{
Toast.makeText(mContext, "Your cannot select future time", Toast.LENGTH_SHORT).show();
}
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
the code in line:
will return a date in 1970
while the code in line:
will return the current date in 2014
so the code:
will never executed because the campare is equal to (-1 == 0)
here is a test code (I created on Button as a debugging techniques, instead use your code to log it out to logcat):
the logcat result is:
to correct this, I suggest to save the time in data Bandle as full length like "yyyy-MM-dd HH:mm:ss" then use SimpleDateFormat("yyyy-MM-dd HH:mm:ss") as following so your code will run correctly.