├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── License ├── README.md ├── assets └── ipconfig ├── bin ├── AndroidManifest.xml ├── R.txt ├── classes │ └── com │ │ ├── jeremyfeinstein │ │ └── slidingmenu │ │ │ └── lib │ │ │ ├── R$attr.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ │ └── mo │ │ └── mobileoffice │ │ ├── BuildConfig.class │ │ ├── R$attr.class │ │ ├── R$color.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$styleable.class │ │ ├── R.class │ │ ├── common │ │ ├── adapter │ │ │ ├── CommonAdapter.class │ │ │ └── ViewHolder.class │ │ ├── app │ │ │ ├── ActivityCollector.class │ │ │ ├── FragmentEnum.class │ │ │ └── FragmentFactory.class │ │ ├── base │ │ │ ├── BaseActivity.class │ │ │ ├── BaseApplication.class │ │ │ ├── BaseDao.class │ │ │ ├── BaseFragment.class │ │ │ ├── BasePopView.class │ │ │ ├── BasePresenter$1.class │ │ │ ├── BasePresenter$2.class │ │ │ ├── BasePresenter$3.class │ │ │ ├── BasePresenter$4.class │ │ │ ├── BasePresenter$5.class │ │ │ ├── BasePresenter$6.class │ │ │ ├── BasePresenter$7.class │ │ │ ├── BasePresenter$8.class │ │ │ ├── BasePresenter$CallBack.class │ │ │ ├── BasePresenter$IUploadCallBack.class │ │ │ ├── BasePresenter$InterceptCallBack$1.class │ │ │ ├── BasePresenter$InterceptCallBack.class │ │ │ ├── BasePresenter.class │ │ │ ├── CommBean.class │ │ │ ├── CommBeanList.class │ │ │ ├── DBHelper.class │ │ │ ├── IdeaActivity.class │ │ │ └── RadioFragment.class │ │ ├── dialog │ │ │ ├── ListViewDialog$1.class │ │ │ ├── ListViewDialog$2.class │ │ │ ├── ListViewDialog.class │ │ │ ├── LoadingDialog.class │ │ │ └── ProgressDialog.class │ │ ├── helper │ │ │ ├── DBHelper.class │ │ │ ├── ProgressHelper$1.class │ │ │ └── ProgressHelper.class │ │ ├── mvp │ │ │ ├── BaseMvpPresenter.class │ │ │ ├── MvpActivity.class │ │ │ ├── MvpFragment.class │ │ │ ├── MvpIdeaFragment.class │ │ │ ├── MvpPresenter.class │ │ │ ├── MvpRadioFragment.class │ │ │ └── MvpView.class │ │ ├── net │ │ │ ├── OkHttpClientManager$1.class │ │ │ ├── OkHttpClientManager$IDownloadCallBack.class │ │ │ ├── OkHttpClientManager$IResultCallBack.class │ │ │ ├── OkHttpClientManager.class │ │ │ ├── ProgressRequestBody$1.class │ │ │ ├── ProgressRequestBody.class │ │ │ ├── ProgressResponseBody$1.class │ │ │ ├── ProgressResponseBody.class │ │ │ ├── RequestArr$ACTION.class │ │ │ ├── RequestArr.class │ │ │ └── RequestFactory.class │ │ ├── receiver │ │ │ ├── ForceOfflineBroadCaseReceiver$1.class │ │ │ └── ForceOfflineBroadCaseReceiver.class │ │ ├── tool │ │ │ ├── AssetsTool.class │ │ │ ├── DisplayTool.class │ │ │ ├── FileTool.class │ │ │ ├── GsonTool$1.class │ │ │ ├── GsonTool.class │ │ │ ├── ImageTool.class │ │ │ ├── MD5Encoder.class │ │ │ ├── NetTool.class │ │ │ ├── PreTool.class │ │ │ ├── StringTool.class │ │ │ └── Variable.class │ │ └── widget │ │ │ ├── CalendarTest$SendData.class │ │ │ ├── CalendarTest.class │ │ │ ├── CircularImageView.class │ │ │ ├── CricleImageView.class │ │ │ ├── DefaultListView$OnItemClickListener.class │ │ │ ├── DefaultListView$OnItemLongClickListener.class │ │ │ ├── DefaultListView$RequestRefreshListener.class │ │ │ ├── DefaultListView.class │ │ │ ├── DefaultSprinner$1.class │ │ │ ├── DefaultSprinner$OnItemClickToRefresh.class │ │ │ ├── DefaultSprinner.class │ │ │ ├── DefaultToast.class │ │ │ ├── DeletableEditText.class │ │ │ ├── DropDownMenu$1.class │ │ │ ├── DropDownMenu$2.class │ │ │ ├── DropDownMenu.class │ │ │ ├── HeaderView.class │ │ │ ├── HistoryView$1.class │ │ │ ├── HistoryView$2.class │ │ │ ├── HistoryView.class │ │ │ ├── RoundProgressBar.class │ │ │ ├── SlipPopWin$HiddenAsyn.class │ │ │ ├── SlipPopWin$OnScrollListener.class │ │ │ ├── SlipPopWin$ShowAsyn.class │ │ │ └── SlipPopWin.class │ │ └── function │ │ ├── announce │ │ ├── bean │ │ │ ├── AnnounceBean.class │ │ │ ├── DelAnno_Request.class │ │ │ ├── GetAnno_Request.class │ │ │ ├── ReadAnno_Request.class │ │ │ └── SendAnno_Request.class │ │ ├── contract │ │ │ ├── AnnoContract$Presenter.class │ │ │ ├── AnnoContract$View.class │ │ │ ├── AnnoContract.class │ │ │ ├── SendAnnoContract$Presenter.class │ │ │ ├── SendAnnoContract$View.class │ │ │ └── SendAnnoContract.class │ │ ├── dao │ │ │ └── AnnounceDao.class │ │ ├── popview │ │ │ └── AnnoDetailView.class │ │ ├── presenter │ │ │ ├── AnnoPresenter$1$1.class │ │ │ ├── AnnoPresenter$1$2.class │ │ │ ├── AnnoPresenter$1.class │ │ │ ├── AnnoPresenter$2$1.class │ │ │ ├── AnnoPresenter$2.class │ │ │ ├── AnnoPresenter$3$1.class │ │ │ ├── AnnoPresenter$3.class │ │ │ ├── AnnoPresenter.class │ │ │ ├── SendAnnoPresenter$1$1$1.class │ │ │ ├── SendAnnoPresenter$1$1$2.class │ │ │ ├── SendAnnoPresenter$1$1.class │ │ │ ├── SendAnnoPresenter$1$2$1.class │ │ │ ├── SendAnnoPresenter$1$2$2.class │ │ │ ├── SendAnnoPresenter$1$2$3.class │ │ │ ├── SendAnnoPresenter$1$2.class │ │ │ ├── SendAnnoPresenter$1.class │ │ │ ├── SendAnnoPresenter$2.class │ │ │ └── SendAnnoPresenter.class │ │ └── ui │ │ │ ├── AnnoFragment$1.class │ │ │ ├── AnnoFragment$2.class │ │ │ ├── AnnoFragment$3.class │ │ │ ├── AnnoFragment.class │ │ │ ├── SendAnnoFragment$1.class │ │ │ └── SendAnnoFragment.class │ │ ├── approval │ │ ├── bean │ │ │ ├── ApprovalDetail_Respond$DetailData$ListData.class │ │ │ ├── ApprovalDetail_Respond$DetailData.class │ │ │ ├── ApprovalDetail_Respond.class │ │ │ ├── ApprovalDetal_Request.class │ │ │ ├── Approval_SubmitViewRequest.class │ │ │ ├── Evection_Request$EvectionData.class │ │ │ ├── Evection_Request.class │ │ │ ├── HistoryApproval_Respond$HistoryData$HistoryExplain.class │ │ │ ├── HistoryApproval_Respond$HistoryData.class │ │ │ ├── HistoryApproval_Respond.class │ │ │ ├── Leave_Request.class │ │ │ ├── Leave_Respond.class │ │ │ ├── MyApproval_Request.class │ │ │ ├── MyApproval_Respond$MyApprovalData$ExplainData.class │ │ │ ├── MyApproval_Respond$MyApprovalData.class │ │ │ ├── MyApproval_Respond.class │ │ │ ├── Reimburse_Request$ReData.class │ │ │ ├── Reimburse_Request.class │ │ │ └── WaitApproval.class │ │ ├── contract │ │ │ ├── ApprOfMeContract$Presenter.class │ │ │ ├── ApprOfMeContract$View.class │ │ │ ├── ApprOfMeContract.class │ │ │ ├── ApprovalContract$Presenter.class │ │ │ ├── ApprovalContract$View.class │ │ │ ├── ApprovalContract.class │ │ │ ├── ApprovalDetailContract$Presenter.class │ │ │ ├── ApprovalDetailContract$View.class │ │ │ ├── ApprovalDetailContract.class │ │ │ ├── ApprovalHistoryDetailContract$Presenter.class │ │ │ ├── ApprovalHistoryDetailContract$View.class │ │ │ ├── ApprovalHistoryDetailContract.class │ │ │ ├── EvectionContract$Presenter.class │ │ │ ├── EvectionContract$View.class │ │ │ ├── EvectionContract.class │ │ │ ├── HistoryApprovalContract$Presenter.class │ │ │ ├── HistoryApprovalContract$View.class │ │ │ ├── HistoryApprovalContract.class │ │ │ ├── ImageViewShowContract$Presenter.class │ │ │ ├── ImageViewShowContract$View.class │ │ │ ├── ImageViewShowContract.class │ │ │ ├── LeaveContract$Presenter.class │ │ │ ├── LeaveContract$View.class │ │ │ ├── LeaveContract.class │ │ │ ├── ReimburseContract$Presenter.class │ │ │ ├── ReimburseContract$View.class │ │ │ ├── ReimburseContract.class │ │ │ ├── WaitMeApprContract$Presenter.class │ │ │ ├── WaitMeApprContract$View.class │ │ │ ├── WaitMeApprContract.class │ │ │ ├── WaitMeApprovalContract$Presenter.class │ │ │ ├── WaitMeApprovalContract$View.class │ │ │ └── WaitMeApprovalContract.class │ │ ├── presenter │ │ │ ├── ApprOfMePresenter$1$1.class │ │ │ ├── ApprOfMePresenter$1.class │ │ │ ├── ApprOfMePresenter.class │ │ │ ├── ApprovalDetailPresenter$1.class │ │ │ ├── ApprovalDetailPresenter$2.class │ │ │ ├── ApprovalDetailPresenter.class │ │ │ ├── ApprovalHistoryDetailPresenter.class │ │ │ ├── ApprovalPresenter.class │ │ │ ├── EvectionPresenter$1$1.class │ │ │ ├── EvectionPresenter$1$2.class │ │ │ ├── EvectionPresenter$1$3$1.class │ │ │ ├── EvectionPresenter$1$3.class │ │ │ ├── EvectionPresenter$1.class │ │ │ ├── EvectionPresenter.class │ │ │ ├── HistoryApprovalPresenter$1$1.class │ │ │ ├── HistoryApprovalPresenter$1$2.class │ │ │ ├── HistoryApprovalPresenter$1.class │ │ │ ├── HistoryApprovalPresenter.class │ │ │ ├── LeavePresenter$1$1.class │ │ │ ├── LeavePresenter$1$2.class │ │ │ ├── LeavePresenter$1$3.class │ │ │ ├── LeavePresenter$1.class │ │ │ ├── LeavePresenter.class │ │ │ ├── ReimbursePresenter$1$1.class │ │ │ ├── ReimbursePresenter$1$2.class │ │ │ ├── ReimbursePresenter$1$3$1.class │ │ │ ├── ReimbursePresenter$1$3.class │ │ │ ├── ReimbursePresenter$1.class │ │ │ ├── ReimbursePresenter.class │ │ │ ├── ShowImagePresenter.class │ │ │ ├── WaitMeApprPresenter.class │ │ │ ├── WaitMeApprovalPresenter$1$1.class │ │ │ ├── WaitMeApprovalPresenter$1$2.class │ │ │ ├── WaitMeApprovalPresenter$1.class │ │ │ └── WaitMeApprovalPresenter.class │ │ └── ui │ │ │ ├── ApprOfMeFragment$1.class │ │ │ ├── ApprOfMeFragment.class │ │ │ ├── ApprovalDetailFragment$1.class │ │ │ ├── ApprovalDetailFragment$2.class │ │ │ ├── ApprovalDetailFragment$3.class │ │ │ ├── ApprovalDetailFragment.class │ │ │ ├── ApprovalFragment.class │ │ │ ├── ApprovalHistoryDetailFragment$1.class │ │ │ ├── ApprovalHistoryDetailFragment.class │ │ │ ├── ChildBaseFragment.class │ │ │ ├── EvectionFragment$1.class │ │ │ ├── EvectionFragment$2.class │ │ │ ├── EvectionFragment$3.class │ │ │ ├── EvectionFragment$4.class │ │ │ ├── EvectionFragment$5.class │ │ │ ├── EvectionFragment.class │ │ │ ├── HistoryApprovalFragment$1.class │ │ │ ├── HistoryApprovalFragment.class │ │ │ ├── LeaveFragment$1.class │ │ │ ├── LeaveFragment$2.class │ │ │ ├── LeaveFragment$3.class │ │ │ ├── LeaveFragment$4.class │ │ │ ├── LeaveFragment$5.class │ │ │ ├── LeaveFragment$6.class │ │ │ ├── LeaveFragment.class │ │ │ ├── MyApprovalDetailFragment$1.class │ │ │ ├── MyApprovalDetailFragment.class │ │ │ ├── ReimburseFragment$1.class │ │ │ ├── ReimburseFragment$2.class │ │ │ ├── ReimburseFragment$3.class │ │ │ ├── ReimburseFragment$4.class │ │ │ ├── ReimburseFragment$5.class │ │ │ ├── ReimburseFragment$6.class │ │ │ ├── ReimburseFragment.class │ │ │ ├── ShowImageFragment$ImageAdapter.class │ │ │ ├── ShowImageFragment.class │ │ │ ├── WaitMeApprFragment$1.class │ │ │ ├── WaitMeApprFragment.class │ │ │ ├── WaitMeApprovalFragment$1.class │ │ │ └── WaitMeApprovalFragment.class │ │ ├── checkin │ │ ├── adapter │ │ │ ├── CheckInHistoryAdater$1.class │ │ │ ├── CheckInHistoryAdater$2.class │ │ │ ├── CheckInHistoryAdater$CheckInHistoryHolder.class │ │ │ ├── CheckInHistoryAdater$FooterViewHolder.class │ │ │ ├── CheckInHistoryAdater$OnItemClickListener.class │ │ │ ├── CheckInHistoryAdater.class │ │ │ └── DividerItemDecoration.class │ │ ├── bean │ │ │ ├── CheckIn_DataSend_Request.class │ │ │ ├── CheckIn_DataSend_Respond.class │ │ │ ├── CheckIn_HistoryDataFragment_Respond$Data.class │ │ │ ├── CheckIn_HistoryDataFragment_Respond.class │ │ │ ├── CheckIn_HistoryData_Request.class │ │ │ ├── CheckIn_HistoryData_Respond$HistoryDate.class │ │ │ ├── CheckIn_HistoryData_Respond.class │ │ │ ├── CheckIn_HistoryDate_Request.class │ │ │ ├── CheckIn_RecentData_Request.class │ │ │ ├── LocationDataSave.class │ │ │ └── PoiAddressSave.class │ │ ├── contract │ │ │ ├── CheckInContract$Presenter.class │ │ │ ├── CheckInContract$View.class │ │ │ ├── CheckInContract.class │ │ │ ├── CheckInHistoryContract$Presenter.class │ │ │ ├── CheckInHistoryContract$View.class │ │ │ ├── CheckInHistoryContract.class │ │ │ ├── MapContract$Presenter.class │ │ │ ├── MapContract$View.class │ │ │ └── MapContract.class │ │ ├── presenter │ │ │ ├── CheckInHistoryPresenter$1$1.class │ │ │ ├── CheckInHistoryPresenter$1.class │ │ │ ├── CheckInHistoryPresenter$2$1.class │ │ │ ├── CheckInHistoryPresenter$2$2.class │ │ │ ├── CheckInHistoryPresenter$2$3.class │ │ │ ├── CheckInHistoryPresenter$2.class │ │ │ ├── CheckInHistoryPresenter.class │ │ │ ├── CheckInPresenter$1.class │ │ │ ├── CheckInPresenter$2$1.class │ │ │ ├── CheckInPresenter$2$2.class │ │ │ ├── CheckInPresenter$2.class │ │ │ ├── CheckInPresenter$3$1.class │ │ │ ├── CheckInPresenter$3.class │ │ │ ├── CheckInPresenter.class │ │ │ ├── MapPresenter$1.class │ │ │ ├── MapPresenter$2.class │ │ │ └── MapPresenter.class │ │ └── ui │ │ │ ├── CheckinFragment.class │ │ │ ├── CheckinHistoryFragment.class │ │ │ └── MapFragment.class │ │ ├── comm │ │ ├── contract │ │ │ ├── SettingContract$Presenter.class │ │ │ ├── SettingContract$View.class │ │ │ ├── SettingContract.class │ │ │ ├── SplashContract$Presenter.class │ │ │ ├── SplashContract$View.class │ │ │ └── SplashContract.class │ │ ├── presenter │ │ │ ├── SettingPresenter.class │ │ │ ├── SplashPresenter$1$1.class │ │ │ ├── SplashPresenter$1$2.class │ │ │ ├── SplashPresenter$1.class │ │ │ ├── SplashPresenter$2.class │ │ │ ├── SplashPresenter$3.class │ │ │ └── SplashPresenter.class │ │ └── ui │ │ │ ├── ContentFragment.class │ │ │ ├── LeftMenuFragment.class │ │ │ ├── MainActivity.class │ │ │ ├── SettingFragment.class │ │ │ └── SplashActivity.class │ │ ├── meeting │ │ ├── adapter │ │ │ └── MeetingDetailAdapter.class │ │ ├── bean │ │ │ ├── ApplyMeeting_Request.class │ │ │ ├── ApprovalMeeting_Request.class │ │ │ ├── FindMeeting_Request.class │ │ │ ├── FindRoom_Request.class │ │ │ ├── FloorBean.class │ │ │ ├── FloorInfo_Request.class │ │ │ ├── GetAlreadyAppr_Request.class │ │ │ ├── GetWaitAppr_Request.class │ │ │ ├── JudgeRoom_Request.class │ │ │ ├── MeetingApplyBean.class │ │ │ ├── MeetingApprBean.class │ │ │ ├── MeetingBean.class │ │ │ ├── MyApplyMeeting_Request.class │ │ │ ├── RoomBean.class │ │ │ ├── RoomInfo_Request.class │ │ │ └── SearchInfo.class │ │ ├── contract │ │ │ ├── ApplyMeetingContract$Presenter.class │ │ │ ├── ApplyMeetingContract$View.class │ │ │ ├── ApplyMeetingContract.class │ │ │ ├── MeetingApprContract$Presenter.class │ │ │ ├── MeetingApprContract$View.class │ │ │ ├── MeetingApprContract.class │ │ │ ├── MeetingApprDetailContract$Presenter.class │ │ │ ├── MeetingApprDetailContract$View.class │ │ │ ├── MeetingApprDetailContract.class │ │ │ ├── MeetingContract$Presenter.class │ │ │ ├── MeetingContract$View.class │ │ │ ├── MeetingContract.class │ │ │ ├── MeetingDetailContract$Presenter.class │ │ │ ├── MeetingDetailContract$View.class │ │ │ ├── MeetingDetailContract.class │ │ │ ├── MyMeetingApplyContract$Presenter.class │ │ │ ├── MyMeetingApplyContract$View.class │ │ │ ├── MyMeetingApplyContract.class │ │ │ ├── RoomDetailContract$Presenter.class │ │ │ ├── RoomDetailContract$View.class │ │ │ └── RoomDetailContract.class │ │ ├── dao │ │ │ ├── FloorDao.class │ │ │ └── RoomDao.class │ │ ├── presenter │ │ │ ├── ApplyMeetingPresenter$1$1.class │ │ │ ├── ApplyMeetingPresenter$1$2.class │ │ │ ├── ApplyMeetingPresenter$1.class │ │ │ ├── ApplyMeetingPresenter$2$1.class │ │ │ ├── ApplyMeetingPresenter$2$2.class │ │ │ ├── ApplyMeetingPresenter$2$3.class │ │ │ ├── ApplyMeetingPresenter$2.class │ │ │ ├── ApplyMeetingPresenter.class │ │ │ ├── MeetingApprDetailPresenter$1.class │ │ │ ├── MeetingApprDetailPresenter.class │ │ │ ├── MeetingApprPresenter$1$1.class │ │ │ ├── MeetingApprPresenter$1$2.class │ │ │ ├── MeetingApprPresenter$1.class │ │ │ ├── MeetingApprPresenter$2$1.class │ │ │ ├── MeetingApprPresenter$2$2.class │ │ │ ├── MeetingApprPresenter$2.class │ │ │ ├── MeetingApprPresenter.class │ │ │ ├── MeetingDetailPresenter.class │ │ │ ├── MeetingPresenter$1$1.class │ │ │ ├── MeetingPresenter$1$2.class │ │ │ ├── MeetingPresenter$1.class │ │ │ ├── MeetingPresenter.class │ │ │ ├── MyMeetingApplyPresenter$1$1.class │ │ │ ├── MyMeetingApplyPresenter$1$2.class │ │ │ ├── MyMeetingApplyPresenter$1.class │ │ │ ├── MyMeetingApplyPresenter.class │ │ │ ├── RoomDetailPresenter$1$1.class │ │ │ ├── RoomDetailPresenter$1$2.class │ │ │ ├── RoomDetailPresenter$1.class │ │ │ └── RoomDetailPresenter.class │ │ └── ui │ │ │ ├── ApplyMeetingFragment$1.class │ │ │ ├── ApplyMeetingFragment$2.class │ │ │ ├── ApplyMeetingFragment$3.class │ │ │ ├── ApplyMeetingFragment$4.class │ │ │ ├── ApplyMeetingFragment$5.class │ │ │ ├── ApplyMeetingFragment.class │ │ │ ├── MeetingApprDetailFragment$1.class │ │ │ ├── MeetingApprDetailFragment$2.class │ │ │ ├── MeetingApprDetailFragment.class │ │ │ ├── MeetingApprFragment$1.class │ │ │ ├── MeetingApprFragment$2.class │ │ │ ├── MeetingApprFragment.class │ │ │ ├── MeetingDetailFragment.class │ │ │ ├── MeetingFragment$1.class │ │ │ ├── MeetingFragment$2.class │ │ │ ├── MeetingFragment$3.class │ │ │ ├── MeetingFragment$4.class │ │ │ ├── MeetingFragment$5.class │ │ │ ├── MeetingFragment$6.class │ │ │ ├── MeetingFragment$7.class │ │ │ ├── MeetingFragment$8.class │ │ │ ├── MeetingFragment.class │ │ │ ├── MyMeetingApplyFragment$1.class │ │ │ ├── MyMeetingApplyFragment.class │ │ │ ├── RoomDetailFragment$1.class │ │ │ └── RoomDetailFragment.class │ │ ├── upload │ │ ├── adapter │ │ │ ├── PicSeletorAdapter$1.class │ │ │ ├── PicSeletorAdapter$OnPicSelectedListener.class │ │ │ ├── PicSeletorAdapter.class │ │ │ ├── PreviewAdapter$1.class │ │ │ └── PreviewAdapter.class │ │ ├── bean │ │ │ ├── BitmapInfo.class │ │ │ └── PicFolder.class │ │ ├── contract │ │ │ ├── PicPreviewContract$Presenter.class │ │ │ ├── PicPreviewContract$View.class │ │ │ ├── PicPreviewContract.class │ │ │ ├── PicSelectorContract$Presenter.class │ │ │ ├── PicSelectorContract$View.class │ │ │ └── PicSelectorContract.class │ │ ├── presenter │ │ │ ├── PicPreviewPresenter.class │ │ │ └── PicSeletorPresenter.class │ │ ├── tool │ │ │ ├── BitmapCache$BitmapLruCache.class │ │ │ ├── BitmapCache.class │ │ │ ├── ImageLoader$1$1.class │ │ │ ├── ImageLoader$1.class │ │ │ ├── ImageLoader$2$1.class │ │ │ ├── ImageLoader$2$2.class │ │ │ ├── ImageLoader$2.class │ │ │ ├── ImageLoader$LoadIamgeRunnable$1.class │ │ │ ├── ImageLoader$LoadIamgeRunnable.class │ │ │ ├── ImageLoader$Type.class │ │ │ ├── ImageLoader.class │ │ │ ├── SoftCache$SoftRef.class │ │ │ └── SoftCache.class │ │ └── ui │ │ │ ├── PicPreviewFragment$1.class │ │ │ ├── PicPreviewFragment$2.class │ │ │ ├── PicPreviewFragment.class │ │ │ ├── PicSelectorFragment$1$1.class │ │ │ ├── PicSelectorFragment$1.class │ │ │ ├── PicSelectorFragment$2.class │ │ │ └── PicSelectorFragment.class │ │ └── user │ │ ├── bean │ │ ├── Login_Request.class │ │ ├── ModifyUser_Request.class │ │ ├── Register_Request.class │ │ ├── UpdateUserInfo_Request.class │ │ ├── UploadHead_Request.class │ │ └── UserBean.class │ │ ├── contract │ │ ├── LoginContract$Presenter.class │ │ ├── LoginContract$View.class │ │ ├── LoginContract.class │ │ ├── PersInfoContract$Presenter.class │ │ ├── PersInfoContract$View.class │ │ ├── PersInfoContract.class │ │ ├── RegisterContract$Presenter.class │ │ ├── RegisterContract$View.class │ │ └── RegisterContract.class │ │ ├── model │ │ └── UserModel.class │ │ ├── presenter │ │ ├── LoginPresenter$1$1.class │ │ ├── LoginPresenter$1.class │ │ ├── LoginPresenter$2.class │ │ ├── LoginPresenter$3.class │ │ ├── LoginPresenter.class │ │ ├── PersInfoPresenter$1$1.class │ │ ├── PersInfoPresenter$1.class │ │ ├── PersInfoPresenter$2$1.class │ │ ├── PersInfoPresenter$2.class │ │ ├── PersInfoPresenter$3$1.class │ │ ├── PersInfoPresenter$3.class │ │ ├── PersInfoPresenter$4$1.class │ │ ├── PersInfoPresenter$4.class │ │ ├── PersInfoPresenter$5$1.class │ │ ├── PersInfoPresenter$5$2.class │ │ ├── PersInfoPresenter$5$3.class │ │ ├── PersInfoPresenter$5.class │ │ ├── PersInfoPresenter$6$1.class │ │ ├── PersInfoPresenter$6.class │ │ ├── PersInfoPresenter.class │ │ ├── RegisterPresenter$1.class │ │ └── RegisterPresenter.class │ │ └── ui │ │ ├── LoginActivity.class │ │ ├── PersInfoFragment$1.class │ │ ├── PersInfoFragment$2.class │ │ ├── PersInfoFragment$3.class │ │ ├── PersInfoFragment$4.class │ │ ├── PersInfoFragment$5.class │ │ ├── PersInfoFragment.class │ │ └── RegisterFragment.class └── jarlist.cache ├── gen └── com │ ├── jeremyfeinstein │ └── slidingmenu │ │ └── lib │ │ └── R.java │ └── mo │ └── mobileoffice │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── libs ├── AMap2DMap_2.8.1_AMapSearch_3.2.1_20160425.jar ├── AMap_Location_V2.4.1_20160414.jar ├── android-support-v7-recyclerview.jar ├── gson-2.3.1.jar ├── okhttp-2.4.0.jar ├── okio-1.4.0.jar └── picasso-2.5.2[www.javalm.com].jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── calendar_bg.9.png │ ├── calendar_bg_tag.png │ ├── headpic.jpg │ ├── ic_launcher.png │ ├── ico_air.png │ ├── ico_air_small.png │ ├── ico_announce.png │ ├── ico_announce_checked.png │ ├── ico_approval.png │ ├── ico_approval_checked.png │ ├── ico_checkbox_checked.png │ ├── ico_checkbox_normal.png │ ├── ico_checkin.png │ ├── ico_checkin_btn.png │ ├── ico_checkin_checked.png │ ├── ico_checkin_pressed_btn.png │ ├── ico_del.png │ ├── ico_del_pic.png │ ├── ico_down.png │ ├── ico_exit.png │ ├── ico_floor.png │ ├── ico_meeting.png │ ├── ico_meeting_checked.png │ ├── ico_people_count.png │ ├── ico_projector.png │ ├── ico_projector_small.png │ ├── ico_pwd.png │ ├── ico_readed.png │ ├── ico_refresh_arrow.png │ ├── ico_room.png │ ├── ico_send.png │ ├── ico_setting.png │ ├── ico_unreaded.png │ ├── ico_usename.png │ ├── ico_wifi.png │ ├── ico_wifi_small.png │ └── location_marker.png ├── drawable-xhdpi │ ├── bg_default_pic.9.png │ ├── ico_camera.9.png │ ├── ico_drop_down_checked.png │ ├── ico_drop_down_selected.png │ ├── ico_drop_down_unselected.png │ ├── ico_green_hook.png │ ├── ico_people_blue.png │ ├── ico_people_orange.png │ ├── ico_photo.png │ ├── ico_red_fork.png │ ├── ico_right.png │ ├── ico_slidingmenu_togggle.png │ ├── ico_time.png │ ├── ico_time2.png │ ├── icon_loading1.png │ ├── icon_loading10.png │ ├── icon_loading11.png │ ├── icon_loading12.png │ ├── icon_loading2.png │ ├── icon_loading3.png │ ├── icon_loading4.png │ ├── icon_loading5.png │ ├── icon_loading6.png │ ├── icon_loading7.png │ ├── icon_loading8.png │ └── icon_loading9.png ├── drawable-xxhdpi │ ├── bg_announce_textview.9.png │ ├── bg_approval.jpg │ ├── bg_login.jpg │ ├── bg_map.png │ ├── bg_room_detail.png │ ├── bg_slidingmenu.jpg │ ├── ico_back.png │ ├── ico_checkin_history.png │ ├── ico_default_headpic.png │ ├── ico_expense.png │ ├── ico_leave.png │ ├── ico_meeting_approval.png │ ├── ico_my_meeting_apply.png │ ├── ico_on_business.png │ ├── ico_send_approval.png │ ├── ico_wait_approval.png │ └── splash.png ├── drawable │ ├── anim_loading.xml │ ├── selector_announce_ico.xml │ ├── selector_announce_readstate_bg.xml │ ├── selector_apply_btn_bg.xml │ ├── selector_approval_ico.xml │ ├── selector_approval_textview_bg.xml │ ├── selector_checkbox_bg.xml │ ├── selector_checkin_btn.xml │ ├── selector_checkin_ico.xml │ ├── selector_default_item_bg.xml │ ├── selector_login_btn_bg.xml │ ├── selector_meeting_btn_bg.xml │ ├── selector_meeting_checkbox_bg.xml │ ├── selector_meeting_checkbox_textcolor.xml │ ├── selector_meeting_ico.xml │ ├── selector_pers_info_item_bg.xml │ ├── selector_radiogroup_textcolor.xml │ ├── selector_switch_textview_bg.xml │ ├── selector_titlebar_textcolor.xml │ ├── shape_announce_listitem_bg.xml │ ├── shape_apply_btn_enable_bg.xml │ ├── shape_checkin_address_bg.xml │ ├── shape_checkin_btn.xml │ ├── shape_checkinmap_listitem_bg.xml │ ├── shape_floor_num_bg.xml │ ├── shape_loading_bg.xml │ ├── shape_login_btn_bg.xml │ ├── shape_login_btn_pressed_bg.xml │ ├── shape_login_input.xml │ ├── shape_meeting_btn_bg.xml │ ├── shape_meeting_btn_pressed_bg.xml │ ├── shape_meeting_content_bg.xml │ ├── shape_radiobutton_bg.xml │ ├── shape_radiobutton_checked_bg.xml │ ├── shape_state_ico_bg.xml │ ├── shape_toast_bg.xml │ └── shape_waitapproval_item_bg.xml ├── layout │ ├── activity_idea.xml │ ├── activity_login.xml │ ├── activity_splash.xml │ ├── dialog_baoxiao.xml │ ├── dialog_loading.xml │ ├── dialog_progress.xml │ ├── fragment_anno_detail.xml │ ├── fragment_announce.xml │ ├── fragment_apply_meeting.xml │ ├── fragment_appr_of_me.xml │ ├── fragment_approval.xml │ ├── fragment_checkin.xml │ ├── fragment_checkin_changemapitem.xml │ ├── fragment_checkin_history.xml │ ├── fragment_checkin_history_footerview.xml │ ├── fragment_checkin_historyrefresh.xml │ ├── fragment_checkin_map.xml │ ├── fragment_checkinhistory_item.xml │ ├── fragment_content.xml │ ├── fragment_evection.xml │ ├── fragment_leave.xml │ ├── fragment_left_menu.xml │ ├── fragment_meeting.xml │ ├── fragment_meeting_approval.xml │ ├── fragment_meeting_approval_detail.xml │ ├── fragment_meeting_detail.xml │ ├── fragment_meeting_room.xml │ ├── fragment_my_meeting_appr.xml │ ├── fragment_pers_info.xml │ ├── fragment_pic_preview.xml │ ├── fragment_pic_selector.xml │ ├── fragment_register.xml │ ├── fragment_reimburse.xml │ ├── fragment_room_detail.xml │ ├── fragment_send_anno.xml │ ├── fragment_setting.xml │ ├── fragment_wait_me_appr.xml │ ├── include_action_bar.xml │ ├── include_detail_view.xml │ ├── include_divider.xml │ ├── include_evection_detail_view.xml │ ├── layout_anno_detail.xml │ ├── layout_approval_detail.xml │ ├── layout_approval_detail_add.xml │ ├── layout_approval_detail_item.xml │ ├── layout_approval_evection_detail_item.xml │ ├── layout_approval_hisdetail.xml │ ├── layout_approval_leavedetail.xml │ ├── layout_approval_leavehisdetail.xml │ ├── layout_approval_resuimdetail.xml │ ├── layout_approval_resuimhisdetail.xml │ ├── layout_approvaldetail_edit.xml │ ├── layout_approvaldetailfragment_image.xml │ ├── layout_datetimedialog.xml │ ├── layout_evection_timedialog.xml │ ├── layout_hisapproval_item.xml │ ├── layout_history_approval_fragment.xml │ ├── layout_listheader.xml │ ├── layout_meeting_content.xml │ ├── layout_meeting_more.xml │ ├── layout_meeting_physics_info.xml │ ├── layout_meeting_time.xml │ ├── layout_popwindow.xml │ ├── layout_user_checkincount.xml │ ├── layout_waime_fragment.xml │ ├── layout_waitapproval_item.xml │ ├── leavefragment_timedialog.xml │ ├── listitem_announce.xml │ ├── listitem_del_pic.xml │ ├── listitem_dropdown_text.xml │ ├── listitem_floor.xml │ ├── listitem_fragmentmap.xml │ ├── listitem_meeting.xml │ ├── listitem_meeting_appr.xml │ ├── listitem_pic_folder.xml │ ├── listitem_pic_selector.xml │ └── listitem_room.xml ├── menu │ └── main.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── screenshot ├── pic1.png ├── pic10.png ├── pic11.png ├── pic12.png ├── pic13.png ├── pic14.png ├── pic15.png ├── pic16.png ├── pic17.png ├── pic18.png ├── pic2.png ├── pic3.png ├── pic4.png ├── pic5.png ├── pic6.png ├── pic7.png ├── pic8.png └── pic9.png ├── src └── com │ └── mo │ └── mobileoffice │ ├── common │ ├── adapter │ │ ├── CommonAdapter.java │ │ └── ViewHolder.java │ ├── app │ │ ├── ActivityCollector.java │ │ ├── FragmentEnum.java │ │ └── FragmentFactory.java │ ├── base │ │ ├── BaseActivity.java │ │ ├── BaseApplication.java │ │ ├── BaseDao.java │ │ ├── BaseFragment.java │ │ ├── BasePopView.java │ │ ├── BasePresenter.java │ │ ├── CommBean.java │ │ ├── CommBeanList.java │ │ ├── DBHelper.java │ │ ├── IdeaActivity.java │ │ └── RadioFragment.java │ ├── dialog │ │ ├── ListViewDialog.java │ │ ├── LoadingDialog.java │ │ └── ProgressDialog.java │ ├── helper │ │ ├── DBHelper.java │ │ └── ProgressHelper.java │ ├── mvp │ │ ├── BaseMvpPresenter.java │ │ ├── MvpActivity.java │ │ ├── MvpFragment.java │ │ ├── MvpIdeaFragment.java │ │ ├── MvpPresenter.java │ │ ├── MvpRadioFragment.java │ │ └── MvpView.java │ ├── net │ │ ├── OkHttpClientManager.java │ │ ├── ProgressRequestBody.java │ │ ├── ProgressResponseBody.java │ │ ├── RequestArr.java │ │ └── RequestFactory.java │ ├── receiver │ │ └── ForceOfflineBroadCaseReceiver.java │ ├── tool │ │ ├── AssetsTool.java │ │ ├── DisplayTool.java │ │ ├── FileTool.java │ │ ├── GsonTool.java │ │ ├── ImageTool.java │ │ ├── MD5Encoder.java │ │ ├── NetTool.java │ │ ├── PreTool.java │ │ ├── StringTool.java │ │ └── Variable.java │ └── widget │ │ ├── CalendarTest.java │ │ ├── CircularImageView.java │ │ ├── CricleImageView.java │ │ ├── DefaultListView.java │ │ ├── DefaultSprinner.java │ │ ├── DefaultToast.java │ │ ├── DeletableEditText.java │ │ ├── DropDownMenu.java │ │ ├── HeaderView.java │ │ ├── HistoryView.java │ │ ├── RoundProgressBar.java │ │ └── SlipPopWin.java │ └── function │ ├── announce │ ├── bean │ │ ├── AnnounceBean.java │ │ ├── DelAnno_Request.java │ │ ├── GetAnno_Request.java │ │ ├── ReadAnno_Request.java │ │ └── SendAnno_Request.java │ ├── contract │ │ ├── AnnoContract.java │ │ └── SendAnnoContract.java │ ├── dao │ │ └── AnnounceDao.java │ ├── popview │ │ └── AnnoDetailView.java │ ├── presenter │ │ ├── AnnoPresenter.java │ │ └── SendAnnoPresenter.java │ └── ui │ │ ├── AnnoFragment.java │ │ └── SendAnnoFragment.java │ ├── approval │ ├── bean │ │ ├── ApprovalDetail_Respond.java │ │ ├── ApprovalDetal_Request.java │ │ ├── Approval_SubmitViewRequest.java │ │ ├── Evection_Request.java │ │ ├── HistoryApproval_Respond.java │ │ ├── Leave_Request.java │ │ ├── Leave_Respond.java │ │ ├── MyApproval_Request.java │ │ ├── MyApproval_Respond.java │ │ ├── Reimburse_Request.java │ │ └── WaitApproval.java │ ├── contract │ │ ├── ApprOfMeContract.java │ │ ├── ApprovalContract.java │ │ ├── ApprovalDetailContract.java │ │ ├── ApprovalHistoryDetailContract.java │ │ ├── EvectionContract.java │ │ ├── HistoryApprovalContract.java │ │ ├── ImageViewShowContract.java │ │ ├── LeaveContract.java │ │ ├── ReimburseContract.java │ │ ├── WaitMeApprContract.java │ │ └── WaitMeApprovalContract.java │ ├── presenter │ │ ├── ApprOfMePresenter.java │ │ ├── ApprovalDetailPresenter.java │ │ ├── ApprovalHistoryDetailPresenter.java │ │ ├── ApprovalPresenter.java │ │ ├── EvectionPresenter.java │ │ ├── HistoryApprovalPresenter.java │ │ ├── LeavePresenter.java │ │ ├── ReimbursePresenter.java │ │ ├── ShowImagePresenter.java │ │ ├── WaitMeApprPresenter.java │ │ └── WaitMeApprovalPresenter.java │ └── ui │ │ ├── ApprOfMeFragment.java │ │ ├── ApprovalDetailFragment.java │ │ ├── ApprovalFragment.java │ │ ├── ApprovalHistoryDetailFragment.java │ │ ├── ChildBaseFragment.java │ │ ├── EvectionFragment.java │ │ ├── HistoryApprovalFragment.java │ │ ├── LeaveFragment.java │ │ ├── MyApprovalDetailFragment.java │ │ ├── ReimburseFragment.java │ │ ├── ShowImageFragment.java │ │ ├── WaitMeApprFragment.java │ │ └── WaitMeApprovalFragment.java │ ├── checkin │ ├── adapter │ │ ├── CheckInHistoryAdater.java │ │ └── DividerItemDecoration.java │ ├── bean │ │ ├── CheckIn_DataSend_Request.java │ │ ├── CheckIn_DataSend_Respond.java │ │ ├── CheckIn_HistoryDataFragment_Respond.java │ │ ├── CheckIn_HistoryData_Request.java │ │ ├── CheckIn_HistoryData_Respond.java │ │ ├── CheckIn_HistoryDate_Request.java │ │ ├── CheckIn_RecentData_Request.java │ │ ├── LocationDataSave.java │ │ └── PoiAddressSave.java │ ├── contract │ │ ├── CheckInContract.java │ │ ├── CheckInHistoryContract.java │ │ └── MapContract.java │ ├── presenter │ │ ├── CheckInHistoryPresenter.java │ │ ├── CheckInPresenter.java │ │ └── MapPresenter.java │ └── ui │ │ ├── CheckinFragment.java │ │ ├── CheckinHistoryFragment.java │ │ └── MapFragment.java │ ├── comm │ ├── contract │ │ ├── SettingContract.java │ │ └── SplashContract.java │ ├── presenter │ │ ├── SettingPresenter.java │ │ └── SplashPresenter.java │ └── ui │ │ ├── ContentFragment.java │ │ ├── LeftMenuFragment.java │ │ ├── MainActivity.java │ │ ├── SettingFragment.java │ │ └── SplashActivity.java │ ├── meeting │ ├── adapter │ │ └── MeetingDetailAdapter.java │ ├── bean │ │ ├── ApplyMeeting_Request.java │ │ ├── ApprovalMeeting_Request.java │ │ ├── FindMeeting_Request.java │ │ ├── FindRoom_Request.java │ │ ├── FloorBean.java │ │ ├── FloorInfo_Request.java │ │ ├── GetAlreadyAppr_Request.java │ │ ├── GetWaitAppr_Request.java │ │ ├── JudgeRoom_Request.java │ │ ├── MeetingApplyBean.java │ │ ├── MeetingApprBean.java │ │ ├── MeetingBean.java │ │ ├── MyApplyMeeting_Request.java │ │ ├── RoomBean.java │ │ ├── RoomInfo_Request.java │ │ └── SearchInfo.java │ ├── contract │ │ ├── ApplyMeetingContract.java │ │ ├── MeetingApprContract.java │ │ ├── MeetingApprDetailContract.java │ │ ├── MeetingContract.java │ │ ├── MeetingDetailContract.java │ │ ├── MyMeetingApplyContract.java │ │ └── RoomDetailContract.java │ ├── dao │ │ ├── FloorDao.java │ │ └── RoomDao.java │ ├── presenter │ │ ├── ApplyMeetingPresenter.java │ │ ├── MeetingApprDetailPresenter.java │ │ ├── MeetingApprPresenter.java │ │ ├── MeetingDetailPresenter.java │ │ ├── MeetingPresenter.java │ │ ├── MyMeetingApplyPresenter.java │ │ └── RoomDetailPresenter.java │ └── ui │ │ ├── ApplyMeetingFragment.java │ │ ├── MeetingApprDetailFragment.java │ │ ├── MeetingApprFragment.java │ │ ├── MeetingDetailFragment.java │ │ ├── MeetingFragment.java │ │ ├── MyMeetingApplyFragment.java │ │ └── RoomDetailFragment.java │ ├── upload │ ├── adapter │ │ ├── PicSeletorAdapter.java │ │ └── PreviewAdapter.java │ ├── bean │ │ ├── BitmapInfo.java │ │ └── PicFolder.java │ ├── contract │ │ ├── PicPreviewContract.java │ │ └── PicSelectorContract.java │ ├── presenter │ │ ├── PicPreviewPresenter.java │ │ └── PicSeletorPresenter.java │ ├── tool │ │ ├── BitmapCache.java │ │ ├── ImageLoader.java │ │ └── SoftCache.java │ └── ui │ │ ├── PicPreviewFragment.java │ │ └── PicSelectorFragment.java │ └── user │ ├── bean │ ├── Login_Request.java │ ├── ModifyUser_Request.java │ ├── Register_Request.java │ ├── UpdateUserInfo_Request.java │ ├── UploadHead_Request.java │ └── UserBean.java │ ├── contract │ ├── LoginContract.java │ ├── PersInfoContract.java │ └── RegisterContract.java │ ├── model │ └── UserModel.java │ ├── presenter │ ├── LoginPresenter.java │ ├── PersInfoPresenter.java │ └── RegisterPresenter.java │ └── ui │ ├── LoginActivity.java │ ├── PersInfoFragment.java │ └── RegisterFragment.java └── 开发文档 ├── 用户操作手册.docx ├── 设计文档.docx └── 需求规格说明书.docx /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/README.md -------------------------------------------------------------------------------- /assets/ipconfig: -------------------------------------------------------------------------------- 1 | http://172.30.233.1/index.php? -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/R.txt -------------------------------------------------------------------------------- /bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/jeremyfeinstein/slidingmenu/lib/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/jeremyfeinstein/slidingmenu/lib/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/jeremyfeinstein/slidingmenu/lib/R.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/R.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/adapter/CommonAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/adapter/CommonAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/adapter/ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/adapter/ViewHolder.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/app/ActivityCollector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/app/ActivityCollector.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/app/FragmentEnum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/app/FragmentEnum.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/app/FragmentFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/app/FragmentFactory.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BaseActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BaseActivity.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BaseApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BaseApplication.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BaseDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BaseDao.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BaseFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BaseFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePopView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePopView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$6.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$7.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$8.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$CallBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$CallBack.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$IUploadCallBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$IUploadCallBack.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter$InterceptCallBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter$InterceptCallBack.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/BasePresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/BasePresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/CommBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/CommBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/CommBeanList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/CommBeanList.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/DBHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/DBHelper.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/IdeaActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/IdeaActivity.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/base/RadioFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/base/RadioFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/dialog/ListViewDialog$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/dialog/ListViewDialog$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/dialog/ListViewDialog$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/dialog/ListViewDialog$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/dialog/ListViewDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/dialog/ListViewDialog.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/dialog/LoadingDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/dialog/LoadingDialog.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/dialog/ProgressDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/dialog/ProgressDialog.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/helper/DBHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/helper/DBHelper.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/helper/ProgressHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/helper/ProgressHelper$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/helper/ProgressHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/helper/ProgressHelper.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/BaseMvpPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/BaseMvpPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/MvpActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/MvpActivity.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/MvpFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/MvpFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/MvpIdeaFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/MvpIdeaFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/MvpPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/MvpPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/MvpRadioFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/MvpRadioFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/mvp/MvpView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/mvp/MvpView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/OkHttpClientManager$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/OkHttpClientManager$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/OkHttpClientManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/OkHttpClientManager.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/ProgressRequestBody$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/ProgressRequestBody$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/ProgressRequestBody.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/ProgressRequestBody.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/ProgressResponseBody$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/ProgressResponseBody$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/ProgressResponseBody.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/ProgressResponseBody.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/RequestArr$ACTION.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/RequestArr$ACTION.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/RequestArr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/RequestArr.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/net/RequestFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/net/RequestFactory.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/AssetsTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/AssetsTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/DisplayTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/DisplayTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/FileTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/FileTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/GsonTool$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/GsonTool$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/GsonTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/GsonTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/ImageTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/ImageTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/MD5Encoder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/MD5Encoder.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/NetTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/NetTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/PreTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/PreTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/StringTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/StringTool.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/tool/Variable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/tool/Variable.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/CalendarTest$SendData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/CalendarTest$SendData.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/CalendarTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/CalendarTest.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/CircularImageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/CircularImageView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/CricleImageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/CricleImageView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DefaultListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DefaultListView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DefaultSprinner$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DefaultSprinner$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DefaultSprinner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DefaultSprinner.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DefaultToast.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DefaultToast.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DeletableEditText.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DeletableEditText.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DropDownMenu$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DropDownMenu$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DropDownMenu$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DropDownMenu$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/DropDownMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/DropDownMenu.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/HeaderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/HeaderView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/HistoryView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/HistoryView$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/HistoryView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/HistoryView$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/HistoryView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/HistoryView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/RoundProgressBar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/RoundProgressBar.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin$HiddenAsyn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin$HiddenAsyn.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin$OnScrollListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin$OnScrollListener.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin$ShowAsyn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin$ShowAsyn.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/common/widget/SlipPopWin.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/bean/AnnounceBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/bean/AnnounceBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/bean/DelAnno_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/bean/DelAnno_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/bean/GetAnno_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/bean/GetAnno_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/bean/ReadAnno_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/bean/ReadAnno_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/bean/SendAnno_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/bean/SendAnno_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/contract/AnnoContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/contract/AnnoContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/contract/SendAnnoContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/contract/SendAnnoContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/dao/AnnounceDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/dao/AnnounceDao.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/popview/AnnoDetailView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/popview/AnnoDetailView.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/ui/AnnoFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/ui/SendAnnoFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/ui/SendAnnoFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/announce/ui/SendAnnoFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/announce/ui/SendAnnoFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/Evection_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/Evection_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/Leave_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/Leave_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/Leave_Respond.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/Leave_Respond.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/MyApproval_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/MyApproval_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/MyApproval_Respond.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/MyApproval_Respond.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/Reimburse_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/Reimburse_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/bean/WaitApproval.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/bean/WaitApproval.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/contract/ApprOfMeContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/contract/ApprOfMeContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/contract/ApprovalContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/contract/ApprovalContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/contract/EvectionContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/contract/EvectionContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/contract/LeaveContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/contract/LeaveContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/presenter/LeavePresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/presenter/LeavePresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ApprOfMeFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ApprOfMeFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ApprOfMeFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ApprOfMeFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ApprovalDetailFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ApprovalDetailFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ApprovalFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ApprovalFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ChildBaseFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ChildBaseFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/EvectionFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment$6.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/LeaveFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment$6.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ReimburseFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/ShowImageFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/ShowImageFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/WaitMeApprFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/WaitMeApprFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/WaitMeApprFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/WaitMeApprFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/approval/ui/WaitMeApprovalFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/approval/ui/WaitMeApprovalFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/bean/LocationDataSave.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/bean/LocationDataSave.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/bean/PoiAddressSave.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/bean/PoiAddressSave.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/contract/CheckInContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/contract/CheckInContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/contract/MapContract$View.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/contract/MapContract$View.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/contract/MapContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/contract/MapContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/presenter/CheckInPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/presenter/CheckInPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/presenter/MapPresenter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/presenter/MapPresenter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/presenter/MapPresenter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/presenter/MapPresenter$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/presenter/MapPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/presenter/MapPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/ui/CheckinFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/ui/CheckinFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/ui/CheckinHistoryFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/ui/CheckinHistoryFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/checkin/ui/MapFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/checkin/ui/MapFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/contract/SettingContract$View.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/contract/SettingContract$View.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/contract/SettingContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/contract/SettingContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/contract/SplashContract$View.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/contract/SplashContract$View.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/contract/SplashContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/contract/SplashContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SettingPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SettingPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$1$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$1$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$1$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/presenter/SplashPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/ui/ContentFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/ui/ContentFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/ui/LeftMenuFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/ui/LeftMenuFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/ui/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/ui/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/ui/SettingFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/ui/SettingFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/comm/ui/SplashActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/comm/ui/SplashActivity.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/ApplyMeeting_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/ApplyMeeting_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/FindMeeting_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/FindMeeting_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/FindRoom_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/FindRoom_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/FloorBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/FloorBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/FloorInfo_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/FloorInfo_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/GetWaitAppr_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/GetWaitAppr_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/JudgeRoom_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/JudgeRoom_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/MeetingApplyBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/MeetingApplyBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/MeetingApprBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/MeetingApprBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/MeetingBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/MeetingBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/RoomBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/RoomBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/RoomInfo_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/RoomInfo_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/bean/SearchInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/bean/SearchInfo.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/contract/MeetingContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/contract/MeetingContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/dao/FloorDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/dao/FloorDao.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/dao/RoomDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/dao/RoomDao.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/presenter/MeetingPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/presenter/MeetingPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingDetailFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingDetailFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$6.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$7.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment$8.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MeetingFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/MyMeetingApplyFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/MyMeetingApplyFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/RoomDetailFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/RoomDetailFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/meeting/ui/RoomDetailFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/meeting/ui/RoomDetailFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/adapter/PicSeletorAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/adapter/PicSeletorAdapter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/adapter/PreviewAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/adapter/PreviewAdapter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/adapter/PreviewAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/adapter/PreviewAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/bean/BitmapInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/bean/BitmapInfo.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/bean/PicFolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/bean/PicFolder.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/BitmapCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/BitmapCache.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$1$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$2$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$2$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$2$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$Type.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader$Type.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/ImageLoader.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/SoftCache$SoftRef.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/SoftCache$SoftRef.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/tool/SoftCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/tool/SoftCache.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/bean/Login_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/bean/Login_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/bean/ModifyUser_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/bean/ModifyUser_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/bean/Register_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/bean/Register_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/bean/UploadHead_Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/bean/UploadHead_Request.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/bean/UserBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/bean/UserBean.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/contract/LoginContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/contract/LoginContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/contract/PersInfoContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/contract/PersInfoContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/contract/RegisterContract.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/contract/RegisterContract.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/model/UserModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/model/UserModel.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/presenter/LoginPresenter.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/LoginActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/LoginActivity.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$1.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$2.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$3.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$4.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment$5.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/PersInfoFragment.class -------------------------------------------------------------------------------- /bin/classes/com/mo/mobileoffice/function/user/ui/RegisterFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/classes/com/mo/mobileoffice/function/user/ui/RegisterFragment.class -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/bin/jarlist.cache -------------------------------------------------------------------------------- /gen/com/jeremyfeinstein/slidingmenu/lib/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/gen/com/jeremyfeinstein/slidingmenu/lib/R.java -------------------------------------------------------------------------------- /gen/com/mo/mobileoffice/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/gen/com/mo/mobileoffice/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/mo/mobileoffice/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/gen/com/mo/mobileoffice/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/AMap2DMap_2.8.1_AMapSearch_3.2.1_20160425.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/AMap2DMap_2.8.1_AMapSearch_3.2.1_20160425.jar -------------------------------------------------------------------------------- /libs/AMap_Location_V2.4.1_20160414.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/AMap_Location_V2.4.1_20160414.jar -------------------------------------------------------------------------------- /libs/android-support-v7-recyclerview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/android-support-v7-recyclerview.jar -------------------------------------------------------------------------------- /libs/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/gson-2.3.1.jar -------------------------------------------------------------------------------- /libs/okhttp-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/okhttp-2.4.0.jar -------------------------------------------------------------------------------- /libs/okio-1.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/okio-1.4.0.jar -------------------------------------------------------------------------------- /libs/picasso-2.5.2[www.javalm.com].jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/libs/picasso-2.5.2[www.javalm.com].jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/lint.xml -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/calendar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/calendar_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calendar_bg_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/calendar_bg_tag.png -------------------------------------------------------------------------------- /res/drawable-hdpi/headpic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/headpic.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_air.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_air_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_air_small.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_announce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_announce.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_announce_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_announce_checked.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_approval.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_approval_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_approval_checked.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_checkbox_checked.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_checkbox_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_checkin.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_checkin_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_checkin_btn.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_checkin_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_checkin_checked.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_checkin_pressed_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_checkin_pressed_btn.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_del.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_del_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_del_pic.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_exit.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_floor.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_meeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_meeting.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_meeting_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_meeting_checked.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_people_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_people_count.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_projector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_projector.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_projector_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_projector_small.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_pwd.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_readed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_readed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_refresh_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_refresh_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_room.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_send.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_setting.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_unreaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_unreaded.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_usename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_usename.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_wifi.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ico_wifi_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/ico_wifi_small.png -------------------------------------------------------------------------------- /res/drawable-hdpi/location_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-hdpi/location_marker.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/bg_default_pic.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/bg_default_pic.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_camera.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_camera.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_drop_down_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_drop_down_checked.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_drop_down_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_drop_down_selected.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_drop_down_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_drop_down_unselected.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_green_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_green_hook.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_people_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_people_blue.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_people_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_people_orange.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_photo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_red_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_red_fork.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_right.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_slidingmenu_togggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_slidingmenu_togggle.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_time.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ico_time2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/ico_time2.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading10.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading11.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading12.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading2.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading3.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading4.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading5.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading6.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading7.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading8.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_loading9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xhdpi/icon_loading9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_announce_textview.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/bg_announce_textview.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_approval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/bg_approval.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/bg_login.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/bg_map.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_room_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/bg_room_detail.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_slidingmenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/bg_slidingmenu.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_back.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_checkin_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_checkin_history.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_default_headpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_default_headpic.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_expense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_expense.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_leave.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_meeting_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_meeting_approval.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_my_meeting_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_my_meeting_apply.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_on_business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_on_business.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_send_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_send_approval.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ico_wait_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/ico_wait_approval.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /res/drawable/anim_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/anim_loading.xml -------------------------------------------------------------------------------- /res/drawable/selector_announce_ico.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_announce_ico.xml -------------------------------------------------------------------------------- /res/drawable/selector_announce_readstate_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_announce_readstate_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_apply_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_apply_btn_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_approval_ico.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_approval_ico.xml -------------------------------------------------------------------------------- /res/drawable/selector_approval_textview_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_approval_textview_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_checkbox_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_checkbox_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_checkin_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_checkin_btn.xml -------------------------------------------------------------------------------- /res/drawable/selector_checkin_ico.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_checkin_ico.xml -------------------------------------------------------------------------------- /res/drawable/selector_default_item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_default_item_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_login_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_login_btn_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_meeting_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_meeting_btn_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_meeting_checkbox_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_meeting_checkbox_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_meeting_checkbox_textcolor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_meeting_checkbox_textcolor.xml -------------------------------------------------------------------------------- /res/drawable/selector_meeting_ico.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_meeting_ico.xml -------------------------------------------------------------------------------- /res/drawable/selector_pers_info_item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_pers_info_item_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_radiogroup_textcolor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_radiogroup_textcolor.xml -------------------------------------------------------------------------------- /res/drawable/selector_switch_textview_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_switch_textview_bg.xml -------------------------------------------------------------------------------- /res/drawable/selector_titlebar_textcolor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/selector_titlebar_textcolor.xml -------------------------------------------------------------------------------- /res/drawable/shape_announce_listitem_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_announce_listitem_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_apply_btn_enable_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_apply_btn_enable_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_checkin_address_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_checkin_address_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_checkin_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_checkin_btn.xml -------------------------------------------------------------------------------- /res/drawable/shape_checkinmap_listitem_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_checkinmap_listitem_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_floor_num_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_floor_num_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_loading_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_loading_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_login_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_login_btn_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_login_btn_pressed_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_login_btn_pressed_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_login_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_login_input.xml -------------------------------------------------------------------------------- /res/drawable/shape_meeting_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_meeting_btn_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_meeting_btn_pressed_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_meeting_btn_pressed_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_meeting_content_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_meeting_content_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_radiobutton_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_radiobutton_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_radiobutton_checked_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_radiobutton_checked_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_state_ico_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_state_ico_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_toast_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_toast_bg.xml -------------------------------------------------------------------------------- /res/drawable/shape_waitapproval_item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/drawable/shape_waitapproval_item_bg.xml -------------------------------------------------------------------------------- /res/layout/activity_idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/activity_idea.xml -------------------------------------------------------------------------------- /res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/activity_login.xml -------------------------------------------------------------------------------- /res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /res/layout/dialog_baoxiao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/dialog_baoxiao.xml -------------------------------------------------------------------------------- /res/layout/dialog_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/dialog_loading.xml -------------------------------------------------------------------------------- /res/layout/dialog_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/dialog_progress.xml -------------------------------------------------------------------------------- /res/layout/fragment_anno_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_anno_detail.xml -------------------------------------------------------------------------------- /res/layout/fragment_announce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_announce.xml -------------------------------------------------------------------------------- /res/layout/fragment_apply_meeting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_apply_meeting.xml -------------------------------------------------------------------------------- /res/layout/fragment_appr_of_me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_appr_of_me.xml -------------------------------------------------------------------------------- /res/layout/fragment_approval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_approval.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkin.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkin_changemapitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkin_changemapitem.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkin_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkin_history.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkin_history_footerview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkin_history_footerview.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkin_historyrefresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkin_historyrefresh.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkin_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkin_map.xml -------------------------------------------------------------------------------- /res/layout/fragment_checkinhistory_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_checkinhistory_item.xml -------------------------------------------------------------------------------- /res/layout/fragment_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_content.xml -------------------------------------------------------------------------------- /res/layout/fragment_evection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_evection.xml -------------------------------------------------------------------------------- /res/layout/fragment_leave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_leave.xml -------------------------------------------------------------------------------- /res/layout/fragment_left_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_left_menu.xml -------------------------------------------------------------------------------- /res/layout/fragment_meeting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_meeting.xml -------------------------------------------------------------------------------- /res/layout/fragment_meeting_approval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_meeting_approval.xml -------------------------------------------------------------------------------- /res/layout/fragment_meeting_approval_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_meeting_approval_detail.xml -------------------------------------------------------------------------------- /res/layout/fragment_meeting_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_meeting_detail.xml -------------------------------------------------------------------------------- /res/layout/fragment_meeting_room.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_meeting_room.xml -------------------------------------------------------------------------------- /res/layout/fragment_my_meeting_appr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_my_meeting_appr.xml -------------------------------------------------------------------------------- /res/layout/fragment_pers_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_pers_info.xml -------------------------------------------------------------------------------- /res/layout/fragment_pic_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_pic_preview.xml -------------------------------------------------------------------------------- /res/layout/fragment_pic_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_pic_selector.xml -------------------------------------------------------------------------------- /res/layout/fragment_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_register.xml -------------------------------------------------------------------------------- /res/layout/fragment_reimburse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_reimburse.xml -------------------------------------------------------------------------------- /res/layout/fragment_room_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_room_detail.xml -------------------------------------------------------------------------------- /res/layout/fragment_send_anno.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_send_anno.xml -------------------------------------------------------------------------------- /res/layout/fragment_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_setting.xml -------------------------------------------------------------------------------- /res/layout/fragment_wait_me_appr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/fragment_wait_me_appr.xml -------------------------------------------------------------------------------- /res/layout/include_action_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/include_action_bar.xml -------------------------------------------------------------------------------- /res/layout/include_detail_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/include_detail_view.xml -------------------------------------------------------------------------------- /res/layout/include_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/include_divider.xml -------------------------------------------------------------------------------- /res/layout/include_evection_detail_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/include_evection_detail_view.xml -------------------------------------------------------------------------------- /res/layout/layout_anno_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_anno_detail.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_detail.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_detail_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_detail_add.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_detail_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_detail_item.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_evection_detail_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_evection_detail_item.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_hisdetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_hisdetail.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_leavedetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_leavedetail.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_leavehisdetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_leavehisdetail.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_resuimdetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_resuimdetail.xml -------------------------------------------------------------------------------- /res/layout/layout_approval_resuimhisdetail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approval_resuimhisdetail.xml -------------------------------------------------------------------------------- /res/layout/layout_approvaldetail_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approvaldetail_edit.xml -------------------------------------------------------------------------------- /res/layout/layout_approvaldetailfragment_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_approvaldetailfragment_image.xml -------------------------------------------------------------------------------- /res/layout/layout_datetimedialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_datetimedialog.xml -------------------------------------------------------------------------------- /res/layout/layout_evection_timedialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_evection_timedialog.xml -------------------------------------------------------------------------------- /res/layout/layout_hisapproval_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_hisapproval_item.xml -------------------------------------------------------------------------------- /res/layout/layout_history_approval_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_history_approval_fragment.xml -------------------------------------------------------------------------------- /res/layout/layout_listheader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_listheader.xml -------------------------------------------------------------------------------- /res/layout/layout_meeting_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_meeting_content.xml -------------------------------------------------------------------------------- /res/layout/layout_meeting_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_meeting_more.xml -------------------------------------------------------------------------------- /res/layout/layout_meeting_physics_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_meeting_physics_info.xml -------------------------------------------------------------------------------- /res/layout/layout_meeting_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_meeting_time.xml -------------------------------------------------------------------------------- /res/layout/layout_popwindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_popwindow.xml -------------------------------------------------------------------------------- /res/layout/layout_user_checkincount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_user_checkincount.xml -------------------------------------------------------------------------------- /res/layout/layout_waime_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_waime_fragment.xml -------------------------------------------------------------------------------- /res/layout/layout_waitapproval_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/layout_waitapproval_item.xml -------------------------------------------------------------------------------- /res/layout/leavefragment_timedialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/leavefragment_timedialog.xml -------------------------------------------------------------------------------- /res/layout/listitem_announce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_announce.xml -------------------------------------------------------------------------------- /res/layout/listitem_del_pic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_del_pic.xml -------------------------------------------------------------------------------- /res/layout/listitem_dropdown_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_dropdown_text.xml -------------------------------------------------------------------------------- /res/layout/listitem_floor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_floor.xml -------------------------------------------------------------------------------- /res/layout/listitem_fragmentmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_fragmentmap.xml -------------------------------------------------------------------------------- /res/layout/listitem_meeting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_meeting.xml -------------------------------------------------------------------------------- /res/layout/listitem_meeting_appr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_meeting_appr.xml -------------------------------------------------------------------------------- /res/layout/listitem_pic_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_pic_folder.xml -------------------------------------------------------------------------------- /res/layout/listitem_pic_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_pic_selector.xml -------------------------------------------------------------------------------- /res/layout/listitem_room.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/layout/listitem_room.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /screenshot/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic1.png -------------------------------------------------------------------------------- /screenshot/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic10.png -------------------------------------------------------------------------------- /screenshot/pic11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic11.png -------------------------------------------------------------------------------- /screenshot/pic12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic12.png -------------------------------------------------------------------------------- /screenshot/pic13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic13.png -------------------------------------------------------------------------------- /screenshot/pic14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic14.png -------------------------------------------------------------------------------- /screenshot/pic15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic15.png -------------------------------------------------------------------------------- /screenshot/pic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic16.png -------------------------------------------------------------------------------- /screenshot/pic17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic17.png -------------------------------------------------------------------------------- /screenshot/pic18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic18.png -------------------------------------------------------------------------------- /screenshot/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic2.png -------------------------------------------------------------------------------- /screenshot/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic3.png -------------------------------------------------------------------------------- /screenshot/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic4.png -------------------------------------------------------------------------------- /screenshot/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic5.png -------------------------------------------------------------------------------- /screenshot/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic6.png -------------------------------------------------------------------------------- /screenshot/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic7.png -------------------------------------------------------------------------------- /screenshot/pic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic8.png -------------------------------------------------------------------------------- /screenshot/pic9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/screenshot/pic9.png -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/adapter/CommonAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/adapter/CommonAdapter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/adapter/ViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/adapter/ViewHolder.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/app/ActivityCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/app/ActivityCollector.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/app/FragmentEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/app/FragmentEnum.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/app/FragmentFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/app/FragmentFactory.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/BaseActivity.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/BaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/BaseApplication.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/BaseDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/BaseDao.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/BaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/BaseFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/BasePopView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/BasePopView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/BasePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/BasePresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/CommBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/CommBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/CommBeanList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/CommBeanList.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/DBHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/DBHelper.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/IdeaActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/IdeaActivity.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/base/RadioFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/base/RadioFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/dialog/ListViewDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/dialog/ListViewDialog.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/dialog/LoadingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/dialog/LoadingDialog.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/dialog/ProgressDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/dialog/ProgressDialog.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/helper/DBHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/helper/DBHelper.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/helper/ProgressHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/helper/ProgressHelper.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/BaseMvpPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/BaseMvpPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/MvpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/MvpActivity.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/MvpFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/MvpFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/MvpIdeaFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/MvpIdeaFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/MvpPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/MvpPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/MvpRadioFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/MvpRadioFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/mvp/MvpView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/mvp/MvpView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/net/OkHttpClientManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/net/OkHttpClientManager.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/net/ProgressRequestBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/net/ProgressRequestBody.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/net/ProgressResponseBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/net/ProgressResponseBody.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/net/RequestArr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/net/RequestArr.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/net/RequestFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/net/RequestFactory.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/receiver/ForceOfflineBroadCaseReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/receiver/ForceOfflineBroadCaseReceiver.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/AssetsTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/AssetsTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/DisplayTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/DisplayTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/FileTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/FileTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/GsonTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/GsonTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/ImageTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/ImageTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/MD5Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/MD5Encoder.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/NetTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/NetTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/PreTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/PreTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/StringTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/StringTool.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/tool/Variable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/tool/Variable.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/CalendarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/CalendarTest.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/CircularImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/CircularImageView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/CricleImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/CricleImageView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/DefaultListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/DefaultListView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/DefaultSprinner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/DefaultSprinner.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/DefaultToast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/DefaultToast.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/DeletableEditText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/DeletableEditText.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/DropDownMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/DropDownMenu.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/HeaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/HeaderView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/HistoryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/HistoryView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/RoundProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/RoundProgressBar.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/common/widget/SlipPopWin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/common/widget/SlipPopWin.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/bean/AnnounceBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/bean/AnnounceBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/bean/DelAnno_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/bean/DelAnno_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/bean/GetAnno_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/bean/GetAnno_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/bean/ReadAnno_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/bean/ReadAnno_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/bean/SendAnno_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/bean/SendAnno_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/contract/AnnoContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/contract/AnnoContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/contract/SendAnnoContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/contract/SendAnnoContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/dao/AnnounceDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/dao/AnnounceDao.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/popview/AnnoDetailView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/popview/AnnoDetailView.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/presenter/AnnoPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/presenter/SendAnnoPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/presenter/SendAnnoPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/ui/AnnoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/ui/AnnoFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/announce/ui/SendAnnoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/announce/ui/SendAnnoFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/ApprovalDetail_Respond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/ApprovalDetail_Respond.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/ApprovalDetal_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/ApprovalDetal_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/Approval_SubmitViewRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/Approval_SubmitViewRequest.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/Evection_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/Evection_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/HistoryApproval_Respond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/HistoryApproval_Respond.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/Leave_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/Leave_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/Leave_Respond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/Leave_Respond.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/MyApproval_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/MyApproval_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/MyApproval_Respond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/MyApproval_Respond.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/Reimburse_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/Reimburse_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/bean/WaitApproval.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/bean/WaitApproval.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/ApprOfMeContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/ApprOfMeContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/ApprovalContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/ApprovalContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/ApprovalDetailContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/ApprovalDetailContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/EvectionContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/EvectionContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/ImageViewShowContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/ImageViewShowContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/LeaveContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/LeaveContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/ReimburseContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/ReimburseContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/WaitMeApprContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/WaitMeApprContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/contract/WaitMeApprovalContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/contract/WaitMeApprovalContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/ApprOfMePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/ApprOfMePresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/ApprovalPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/ApprovalPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/EvectionPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/EvectionPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/LeavePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/LeavePresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/ReimbursePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/ReimbursePresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/ShowImagePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/ShowImagePresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/presenter/WaitMeApprPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/presenter/WaitMeApprPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/ApprOfMeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/ApprOfMeFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/ApprovalDetailFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/ApprovalDetailFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/ApprovalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/ApprovalFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/ChildBaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/ChildBaseFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/EvectionFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/EvectionFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/HistoryApprovalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/HistoryApprovalFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/LeaveFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/LeaveFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/MyApprovalDetailFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/MyApprovalDetailFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/ReimburseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/ReimburseFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/ShowImageFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/ShowImageFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/WaitMeApprFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/WaitMeApprFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/approval/ui/WaitMeApprovalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/approval/ui/WaitMeApprovalFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/adapter/CheckInHistoryAdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/adapter/CheckInHistoryAdater.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/adapter/DividerItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/adapter/DividerItemDecoration.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/CheckIn_DataSend_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/CheckIn_DataSend_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/CheckIn_DataSend_Respond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/CheckIn_DataSend_Respond.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/CheckIn_HistoryData_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/CheckIn_HistoryData_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/CheckIn_HistoryData_Respond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/CheckIn_HistoryData_Respond.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/CheckIn_HistoryDate_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/CheckIn_HistoryDate_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/CheckIn_RecentData_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/CheckIn_RecentData_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/LocationDataSave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/LocationDataSave.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/bean/PoiAddressSave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/bean/PoiAddressSave.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/contract/CheckInContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/contract/CheckInContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/contract/CheckInHistoryContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/contract/CheckInHistoryContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/contract/MapContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/contract/MapContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/presenter/CheckInPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/presenter/CheckInPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/presenter/MapPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/presenter/MapPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/ui/CheckinFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/ui/CheckinFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/ui/CheckinHistoryFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/ui/CheckinHistoryFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/checkin/ui/MapFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/checkin/ui/MapFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/contract/SettingContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/contract/SettingContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/contract/SplashContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/contract/SplashContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/presenter/SettingPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/presenter/SettingPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/presenter/SplashPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/presenter/SplashPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/ui/ContentFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/ui/ContentFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/ui/LeftMenuFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/ui/LeftMenuFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/ui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/ui/MainActivity.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/ui/SettingFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/ui/SettingFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/comm/ui/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/comm/ui/SplashActivity.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/adapter/MeetingDetailAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/adapter/MeetingDetailAdapter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/ApplyMeeting_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/ApplyMeeting_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/ApprovalMeeting_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/ApprovalMeeting_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/FindMeeting_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/FindMeeting_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/FindRoom_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/FindRoom_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/FloorBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/FloorBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/FloorInfo_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/FloorInfo_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/GetAlreadyAppr_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/GetAlreadyAppr_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/GetWaitAppr_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/GetWaitAppr_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/JudgeRoom_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/JudgeRoom_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/MeetingApplyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/MeetingApplyBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/MeetingApprBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/MeetingApprBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/MeetingBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/MeetingBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/MyApplyMeeting_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/MyApplyMeeting_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/RoomBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/RoomBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/RoomInfo_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/RoomInfo_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/bean/SearchInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/bean/SearchInfo.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/contract/ApplyMeetingContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/contract/ApplyMeetingContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/contract/MeetingApprContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/contract/MeetingApprContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/contract/MeetingContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/contract/MeetingContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/contract/MeetingDetailContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/contract/MeetingDetailContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/contract/MyMeetingApplyContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/contract/MyMeetingApplyContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/contract/RoomDetailContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/contract/RoomDetailContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/dao/FloorDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/dao/FloorDao.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/dao/RoomDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/dao/RoomDao.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/presenter/ApplyMeetingPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/presenter/ApplyMeetingPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/presenter/MeetingApprPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/presenter/MeetingApprPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/presenter/MeetingDetailPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/presenter/MeetingDetailPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/presenter/MeetingPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/presenter/MeetingPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/presenter/RoomDetailPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/presenter/RoomDetailPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/ApplyMeetingFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/MeetingApprDetailFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/MeetingApprDetailFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/MeetingApprFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/MeetingDetailFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/MeetingDetailFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/MeetingFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/MeetingFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/MyMeetingApplyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/MyMeetingApplyFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/meeting/ui/RoomDetailFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/meeting/ui/RoomDetailFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/adapter/PicSeletorAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/adapter/PicSeletorAdapter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/adapter/PreviewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/adapter/PreviewAdapter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/bean/BitmapInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/bean/BitmapInfo.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/bean/PicFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/bean/PicFolder.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/contract/PicPreviewContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/contract/PicPreviewContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/contract/PicSelectorContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/contract/PicSelectorContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/presenter/PicPreviewPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/presenter/PicPreviewPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/presenter/PicSeletorPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/presenter/PicSeletorPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/tool/BitmapCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/tool/BitmapCache.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/tool/ImageLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/tool/ImageLoader.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/tool/SoftCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/tool/SoftCache.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/ui/PicPreviewFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/upload/ui/PicSelectorFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/bean/Login_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/bean/Login_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/bean/ModifyUser_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/bean/ModifyUser_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/bean/Register_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/bean/Register_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/bean/UpdateUserInfo_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/bean/UpdateUserInfo_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/bean/UploadHead_Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/bean/UploadHead_Request.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/bean/UserBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/bean/UserBean.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/contract/LoginContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/contract/LoginContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/contract/PersInfoContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/contract/PersInfoContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/contract/RegisterContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/contract/RegisterContract.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/model/UserModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/model/UserModel.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/presenter/LoginPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/presenter/LoginPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/presenter/PersInfoPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/presenter/PersInfoPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/presenter/RegisterPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/presenter/RegisterPresenter.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/ui/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/ui/LoginActivity.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/ui/PersInfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/ui/PersInfoFragment.java -------------------------------------------------------------------------------- /src/com/mo/mobileoffice/function/user/ui/RegisterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/src/com/mo/mobileoffice/function/user/ui/RegisterFragment.java -------------------------------------------------------------------------------- /开发文档/用户操作手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/开发文档/用户操作手册.docx -------------------------------------------------------------------------------- /开发文档/设计文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/开发文档/设计文档.docx -------------------------------------------------------------------------------- /开发文档/需求规格说明书.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantianwang/Mobile-Office/HEAD/开发文档/需求规格说明书.docx --------------------------------------------------------------------------------