@Override
 public void onLoadMore() {
   // TODO Auto-generated method stub
   if (mRecords.size() >= total) {
     mRecordList.stopLoadMore();
     mRecordList.setPullLoadEnable(false);
     CommonUtil.toastShort(getActivity(), "没有更多数据");
   } else {
     getMoreData();
   }
 }