// 在 onPause 中更新缓存,因为 onPause 调用之后,在系统资源不足时可能被回收
 @Override
 public void onPause() {
   Cache.updateAllTimeLine(
       mTimeLineControllor.getLastStatus(), mTimeLineControllor.getWeiboList());
   super.onPause();
 }
 @Override
 public String getCache() {
   return Cache.getAllTimeLine();
 }