摘要: public String parseDate(String thedate){ String strReturn = ""; SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyyMMdd"); String dateStringToParse = thedate; try { Date date = bartDateFormat.parse(dateStringToParse); SimpleDateFormat bartDateFormat2 = new SimpleDate... 阅读全文
posted @ 2011-10-20 09:40 未来是个梦 阅读(607) 评论(0) 推荐(0)
摘要: intent英文意思是意图,pending表示即将发生或来临的事情。 PendingIntent这个类用于处理即将发生的事情。比如在通知Notification中用于跳转页面,但不是马上跳转。 Intent 是及时启动,intent 随所在的activity 消失而消失。 PendingIntent 可以看作是对intent的包装,通常通过getActivity,getBroadcast ,getService来得到pendingintent的实例,当前activity并不能马上启动它所包含的intent,而是在外部执行 pendingintent时,调用intent的。正由于pendingi 阅读全文
posted @ 2011-10-20 09:34 未来是个梦 阅读(504) 评论(0) 推荐(0)