- s
- the string to parse
Documentation for this section has not yet been entered.
Type Reason Android.Util.TimeFormatException if s cannot be parsed.
Parses a date-time string in either the RFC 2445 format or an abbreviated format that does not include the "time" field. For example, all of the following strings are valid:
java Example
Time time = new Time(); String date = "20081013T160000Z"; time.parse(date); long millis = time.normalize(false);