my textview
need to display date of exam dead line. My json
passes it as a string . Then i need to get current date and display the remain date on another textviwe
String date ="2014-11-12"; //ok
Date deadline = //how to cast string to date
//then how to get today and subtract
textview1.setText(today);
int remaindays = //how to get it
textview2.setText("You have " +remaindays +" days to exam");