├── README.md ├── app安装包 └── app-classonline.apk ├── app端源码 └── MyApplication │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml │ ├── MyApplication.iml │ ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── gradlew │ ├── gradlew.bat │ ├── libs │ │ └── android-support-v4.jar │ ├── local.properties │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── jack │ │ │ └── myapplication │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── com │ │ │ └── example │ │ │ │ └── jack │ │ │ │ └── myapplication │ │ │ │ ├── activity │ │ │ │ ├── MainActivity.java │ │ │ │ ├── WelcomeGuideActivity.java │ │ │ │ ├── WelcomeStartActivity.java │ │ │ │ ├── mainIndexMy │ │ │ │ │ ├── MyAboutUsActivity.java │ │ │ │ │ ├── MyDownloadActivity.java │ │ │ │ │ ├── MyLessonsCollectionActivity.java │ │ │ │ │ ├── MySettingCenterActivity.java │ │ │ │ │ ├── MyStudyRecordActivity.java │ │ │ │ │ └── MyUserInformationActivity.java │ │ │ │ └── user │ │ │ │ │ ├── LoginActivity.java │ │ │ │ │ └── RegisterActivity.java │ │ │ │ ├── adapter │ │ │ │ ├── DepartmentAdapter.java │ │ │ │ ├── LessonCollectionAdapter.java │ │ │ │ └── LessonListAdapter.java │ │ │ │ ├── consts │ │ │ │ └── MyHttpURL.java │ │ │ │ ├── entity │ │ │ │ ├── Department.java │ │ │ │ ├── Lesson.java │ │ │ │ ├── LessonPart.java │ │ │ │ ├── LessonPartExchange.java │ │ │ │ ├── LessonPartResponse.java │ │ │ │ ├── LessonSection.java │ │ │ │ ├── LessonTest.java │ │ │ │ ├── StudentUser.java │ │ │ │ ├── StudentUserInfo.java │ │ │ │ └── Student_Lesson.java │ │ │ │ ├── exception │ │ │ │ ├── LessonException.java │ │ │ │ ├── StudentException.java │ │ │ │ └── UserException.java │ │ │ │ ├── fragment │ │ │ │ ├── FragmentMainIndexHome.java │ │ │ │ ├── FragmentMainIndexLesson.java │ │ │ │ ├── FragmentMainIndexLessonByTab.java │ │ │ │ ├── FragmentMainIndexMy.java │ │ │ │ ├── FragmentMyUpdateUserInfo.java │ │ │ │ └── FragmentMyUserInfo.java │ │ │ │ ├── http │ │ │ │ └── HttpUtils.java │ │ │ │ ├── service │ │ │ │ ├── DepartmentService.java │ │ │ │ ├── DepartmentServiceImpl.java │ │ │ │ ├── LessonService.java │ │ │ │ ├── LessonServiceImpl.java │ │ │ │ ├── UserService.java │ │ │ │ └── UserServiceImpl.java │ │ │ │ ├── test │ │ │ │ ├── DisplayUtil.java │ │ │ │ ├── NewsTitleHorizontalScrollView.java │ │ │ │ └── TestData.java │ │ │ │ └── utils │ │ │ │ ├── CrashApplication.java │ │ │ │ ├── CrashHandler.java │ │ │ │ ├── ImageLoader.java │ │ │ │ ├── LessonsAsyncTask.java │ │ │ │ ├── NetworkDetector.java │ │ │ │ ├── SharedUtils.java │ │ │ │ └── Statics.java │ │ └── schoolstudy │ │ │ ├── service │ │ │ ├── LessonAndSelection.java │ │ │ ├── LessonAndSelectionImp.java │ │ │ ├── PartExchangeImp.java │ │ │ └── ServiceException.java │ │ │ └── view │ │ │ ├── activity │ │ │ ├── CourseActivity.java │ │ │ └── VideoPlayActivity.java │ │ │ ├── adapter │ │ │ ├── CourseAdapter.java │ │ │ ├── CourseFragmentAdapter.java │ │ │ ├── DepartmentAdapter.java │ │ │ ├── PartExchangeAdapter.java │ │ │ └── SectionAdapter.java │ │ │ ├── entity │ │ │ ├── Course.java │ │ │ ├── Department.java │ │ │ ├── Part.java │ │ │ ├── PartExchange.java │ │ │ ├── Section.java │ │ │ └── Static.java │ │ │ └── fragment │ │ │ ├── FragmentCourseSelection.java │ │ │ ├── FragmentCourseware.java │ │ │ ├── FragmentRecommend.java │ │ │ └── FragmentStudyAndCommunication.java │ │ └── res │ │ ├── drawable │ │ ├── app_icon.jpg │ │ ├── background.jpg │ │ ├── background_news.jpg │ │ ├── btn_log_out_bg.xml │ │ ├── btn_log_out_depressed.xml │ │ ├── btn_log_out_pressed.xml │ │ ├── btn_my_user_name_bg.xml │ │ ├── btn_my_user_name_depressed.xml │ │ ├── btn_my_user_name_pressed.xml │ │ ├── button_bg.xml │ │ ├── button_defocused.xml │ │ ├── button_focused.xml │ │ ├── button_focusedandpressed.xml │ │ ├── button_font.xml │ │ ├── department_engineer_manage.png │ │ ├── department_finance.png │ │ ├── department_foreign.png │ │ ├── department_internet.png │ │ ├── department_law.png │ │ ├── department_math.png │ │ ├── department_money_transfer.png │ │ ├── department_more.jpg │ │ ├── et_stroke_and_conners_bg.xml │ │ ├── green_bg_defocused.xml │ │ ├── green_bg_pressed.xml │ │ ├── green_bg_selector.xml │ │ ├── ic_media_embed_play.png │ │ ├── ic_menu_back.png │ │ ├── index_my_button_color_selector.xml │ │ ├── item_lesson_list_content_bg.xml │ │ ├── main_index_color_selector.xml │ │ ├── main_index_home_normal.png │ │ ├── main_index_home_pressed.png │ │ ├── main_index_home_selector.xml │ │ ├── main_index_lesson_normal.png │ │ ├── main_index_lesson_pressed.png │ │ ├── main_index_lesson_selector.xml │ │ ├── main_index_my_normal.png │ │ ├── main_index_my_pressed.png │ │ ├── main_index_my_selector.xml │ │ ├── middle_gray_bg_selector.xml │ │ ├── middle_gray_depressed.xml │ │ ├── middle_gray_pressed.xml │ │ ├── minitab_selector.xml │ │ ├── my_btn_bg_selector.xml │ │ ├── my_btn_depressed.xml │ │ ├── my_btn_pressed.xml │ │ ├── perm_group_personal_info.png │ │ ├── red_bg_defocused.xml │ │ ├── red_bg_pressed.xml │ │ ├── red_bg_selector.xml │ │ ├── school.jpg │ │ ├── send.jpg │ │ └── tab_indicator_selector.xml │ │ ├── layout │ │ ├── activity_course.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_my_about_us.xml │ │ ├── activity_my_download.xml │ │ ├── activity_my_lessons_collection.xml │ │ ├── activity_my_setting_center.xml │ │ ├── activity_my_study_record.xml │ │ ├── activity_my_user_information.xml │ │ ├── activity_register.xml │ │ ├── activity_video_play.xml │ │ ├── activity_welcome_guide.xml │ │ ├── activity_welcome_start.xml │ │ ├── fragment_course.xml │ │ ├── fragment_course_selection.xml │ │ ├── fragment_courseware.xml │ │ ├── fragment_main_index_home.xml │ │ ├── fragment_main_index_lesson.xml │ │ ├── fragment_main_index_lesson_by_tab.xml │ │ ├── fragment_main_index_my.xml │ │ ├── fragment_my_update_user_info.xml │ │ ├── fragment_my_user_info.xml │ │ ├── fragment_recommend.xml │ │ ├── fragment_study_and_communication.xml │ │ ├── item_course_part.xml │ │ ├── item_course_section.xml │ │ ├── item_department_title.xml │ │ ├── item_gridview.xml │ │ ├── item_lesson_list_content.xml │ │ ├── item_lesson_tab_title.xml │ │ ├── item_listview.xml │ │ ├── item_study_and_communication.xml │ │ ├── news_title_horizontalscrollview_layout.xml │ │ ├── tab_style.xml │ │ ├── top_title_command_login_register.xml │ │ └── top_title_command_main.xml │ │ ├── menu │ │ ├── menu_lesson_part.xml │ │ ├── menu_lesson_section.xml │ │ ├── menu_login.xml │ │ ├── menu_main.xml │ │ ├── menu_my_about_us.xml │ │ ├── menu_my_download.xml │ │ ├── menu_my_lessons_collection.xml │ │ ├── menu_my_setting_center.xml │ │ ├── menu_my_study_record.xml │ │ ├── menu_my_user_information.xml │ │ ├── menu_register.xml │ │ └── menu_welcome_guide.xml │ │ ├── mipmap-hdpi │ │ ├── app_icon.jpg │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── ic_launcher.png │ │ ├── login_background.jpg │ │ ├── login_icon_tip.png │ │ ├── main_index_home_normal.png │ │ ├── main_index_home_pressed.png │ │ ├── main_index_lesson_normal.png │ │ ├── main_index_lesson_pressed.png │ │ ├── main_index_my_normal.png │ │ ├── main_index_my_pressed.png │ │ ├── my_about_us.png │ │ ├── my_download.png │ │ ├── my_lesson_correct.png │ │ ├── my_logout.png │ │ ├── my_setting_center.png │ │ ├── my_study_record.png │ │ ├── my_top_background.jpg │ │ ├── no.png │ │ ├── user_head.png │ │ ├── welcome_guide_01.jpg │ │ ├── welcome_guide_02.jpg │ │ ├── welcome_guide_03.png │ │ ├── welcome_guide_button.png │ │ ├── welcome_start.jpg │ │ └── xia_hua_xian.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── array.xml │ │ ├── color.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── import-summary.txt │ ├── settings.gradle │ ├── smssdk │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── R.txt │ │ ├── classes │ │ │ └── cn │ │ │ │ └── smssdk │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── R$array.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$raw.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R.class │ │ │ │ └── gui │ │ │ │ ├── CommonDialog.class │ │ │ │ ├── ContactDetailPage$1.class │ │ │ │ ├── ContactDetailPage$2.class │ │ │ │ ├── ContactDetailPage.class │ │ │ │ ├── ContactEntry.class │ │ │ │ ├── ContactItemMaker.class │ │ │ │ ├── ContactsAdapter.class │ │ │ │ ├── ContactsListView$1.class │ │ │ │ ├── ContactsListView$GroupAdapter.class │ │ │ │ ├── ContactsListView$InnerAdapter.class │ │ │ │ ├── ContactsListView.class │ │ │ │ ├── ContactsPage$1.class │ │ │ │ ├── ContactsPage$2.class │ │ │ │ ├── ContactsPage$3$1.class │ │ │ │ ├── ContactsPage$3.class │ │ │ │ ├── ContactsPage$4.class │ │ │ │ ├── ContactsPage.class │ │ │ │ ├── CountryAdapter.class │ │ │ │ ├── CountryListView.class │ │ │ │ ├── CountryPage$1.class │ │ │ │ ├── CountryPage$2$1$1.class │ │ │ │ ├── CountryPage$2$1.class │ │ │ │ ├── CountryPage$2.class │ │ │ │ ├── CountryPage.class │ │ │ │ ├── DefaultContactViewItem$1.class │ │ │ │ ├── DefaultContactViewItem$ViewHolder.class │ │ │ │ ├── DefaultContactViewItem.class │ │ │ │ ├── DefaultOnSendMessageListener.class │ │ │ │ ├── GroupListView$1.class │ │ │ │ ├── GroupListView$2.class │ │ │ │ ├── GroupListView$GroupAdapter.class │ │ │ │ ├── GroupListView$InnerAdapter.class │ │ │ │ ├── GroupListView$OnItemClickListener.class │ │ │ │ ├── GroupListView.class │ │ │ │ ├── IdentifyNumPage$1.class │ │ │ │ ├── IdentifyNumPage$10.class │ │ │ │ ├── IdentifyNumPage$11.class │ │ │ │ ├── IdentifyNumPage$12.class │ │ │ │ ├── IdentifyNumPage$13.class │ │ │ │ ├── IdentifyNumPage$14.class │ │ │ │ ├── IdentifyNumPage$2$1.class │ │ │ │ ├── IdentifyNumPage$2.class │ │ │ │ ├── IdentifyNumPage$3.class │ │ │ │ ├── IdentifyNumPage$4.class │ │ │ │ ├── IdentifyNumPage$5.class │ │ │ │ ├── IdentifyNumPage$6.class │ │ │ │ ├── IdentifyNumPage$7.class │ │ │ │ ├── IdentifyNumPage$8.class │ │ │ │ ├── IdentifyNumPage$9.class │ │ │ │ ├── IdentifyNumPage.class │ │ │ │ ├── RegisterPage$1$1.class │ │ │ │ ├── RegisterPage$1.class │ │ │ │ ├── RegisterPage$2.class │ │ │ │ ├── RegisterPage$3.class │ │ │ │ ├── RegisterPage.class │ │ │ │ ├── SMSReceiver.class │ │ │ │ ├── SearchEngine$1.class │ │ │ │ ├── SearchEngine$SearchIndex.class │ │ │ │ ├── SearchEngine.class │ │ │ │ ├── SmartVerifyPage$1.class │ │ │ │ ├── SmartVerifyPage$2.class │ │ │ │ ├── SmartVerifyPage$3.class │ │ │ │ ├── SmartVerifyPage$4.class │ │ │ │ ├── SmartVerifyPage$5.class │ │ │ │ ├── SmartVerifyPage.class │ │ │ │ └── layout │ │ │ │ ├── BackVerifyDialogLayout.class │ │ │ │ ├── BasePageLayout.class │ │ │ │ ├── ContactDetailPageLayout.class │ │ │ │ ├── ContactListPageLayout.class │ │ │ │ ├── ContactsListviewItemLayout.class │ │ │ │ ├── CountryListPageLayout.class │ │ │ │ ├── DrawableHelper.class │ │ │ │ ├── IdentifyNumPageLayout.class │ │ │ │ ├── LayoutFactory.class │ │ │ │ ├── ListviewTitleLayout.class │ │ │ │ ├── ProgressDialogLayout.class │ │ │ │ ├── RegisterPageLayout.class │ │ │ │ ├── Res$color.class │ │ │ │ ├── Res$id.class │ │ │ │ ├── Res.class │ │ │ │ ├── SendMsgDialogLayout.class │ │ │ │ ├── SizeHelper.class │ │ │ │ └── TitleLayout.class │ │ ├── jarlist.cache │ │ ├── res │ │ │ └── crunch │ │ │ │ └── drawable-xhdpi │ │ │ │ ├── smssdk_back_arrow.png │ │ │ │ ├── smssdk_back_arrow2.png │ │ │ │ ├── smssdk_cl_divider.png │ │ │ │ ├── smssdk_clear_search.png │ │ │ │ ├── smssdk_cp_default_avatar.png │ │ │ │ ├── smssdk_default_avatar.png │ │ │ │ ├── smssdk_dialog_back.9.png │ │ │ │ ├── smssdk_dialog_bg.9.png │ │ │ │ ├── smssdk_input_bg_focus.9.png │ │ │ │ ├── smssdk_input_bg_normal.9.png │ │ │ │ ├── smssdk_input_bg_special_focus.9.png │ │ │ │ ├── smssdk_input_bg_special_normal.9.png │ │ │ │ ├── smssdk_search_icon.png │ │ │ │ └── smssdk_sharesdk_icon.png │ │ └── smssdk.jar │ ├── build.gradle │ ├── build │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── cn │ │ │ │ │ │ └── smssdk │ │ │ │ │ │ └── test │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── debug │ │ │ │ │ └── cn │ │ │ │ │ └── smssdk │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── cn │ │ │ │ │ └── smssdk │ │ │ │ │ ├── R.java │ │ │ │ │ └── test │ │ │ │ │ └── R.java │ │ │ │ └── debug │ │ │ │ └── cn │ │ │ │ └── smssdk │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── bundles │ │ │ │ └── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ ├── libs │ │ │ │ │ ├── MobLogCollector.jar │ │ │ │ │ ├── MobTools.jar │ │ │ │ │ └── SMSSDK-1.3.1.jar │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── smssdk_back_arrow.png │ │ │ │ │ ├── smssdk_back_arrow2.png │ │ │ │ │ ├── smssdk_cl_divider.png │ │ │ │ │ ├── smssdk_clear_search.png │ │ │ │ │ ├── smssdk_cp_default_avatar.png │ │ │ │ │ ├── smssdk_default_avatar.png │ │ │ │ │ ├── smssdk_dialog_back.9.png │ │ │ │ │ ├── smssdk_dialog_bg.9.png │ │ │ │ │ ├── smssdk_input_bg_focus.9.png │ │ │ │ │ ├── smssdk_input_bg_normal.9.png │ │ │ │ │ ├── smssdk_input_bg_special_focus.9.png │ │ │ │ │ ├── smssdk_input_bg_special_normal.9.png │ │ │ │ │ ├── smssdk_search_icon.png │ │ │ │ │ └── smssdk_sharesdk_icon.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── smssdk_btn_disenable.xml │ │ │ │ │ ├── smssdk_btn_enable.xml │ │ │ │ │ ├── smssdk_corners_bg.xml │ │ │ │ │ ├── smssdk_corners_bg_nor.xml │ │ │ │ │ ├── smssdk_corners_bg_pre.xml │ │ │ │ │ ├── smssdk_country_bg_selector.xml │ │ │ │ │ ├── smssdk_country_group_scroll_down.xml │ │ │ │ │ ├── smssdk_country_group_scroll_up.xml │ │ │ │ │ ├── smssdk_dialog_btn_back.xml │ │ │ │ │ └── smssdk_edittext_bg_selector.xml │ │ │ │ │ ├── raw │ │ │ │ │ └── smssdk_pydb │ │ │ │ │ ├── values-en │ │ │ │ │ └── values-en.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── classes │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── cn │ │ │ │ │ │ └── smssdk │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$raw.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$raw.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ └── R.class │ │ │ │ └── debug │ │ │ │ │ └── cn │ │ │ │ │ └── smssdk │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── R$array.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$raw.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R.class │ │ │ │ │ └── gui │ │ │ │ │ ├── CommonDialog.class │ │ │ │ │ ├── ContactDetailPage$1.class │ │ │ │ │ ├── ContactDetailPage$2.class │ │ │ │ │ ├── ContactDetailPage.class │ │ │ │ │ ├── ContactEntry.class │ │ │ │ │ ├── ContactItemMaker.class │ │ │ │ │ ├── ContactsAdapter.class │ │ │ │ │ ├── ContactsListView$1.class │ │ │ │ │ ├── ContactsListView$GroupAdapter.class │ │ │ │ │ ├── ContactsListView$InnerAdapter.class │ │ │ │ │ ├── ContactsListView.class │ │ │ │ │ ├── ContactsPage$1.class │ │ │ │ │ ├── ContactsPage$2.class │ │ │ │ │ ├── ContactsPage$3$1.class │ │ │ │ │ ├── ContactsPage$3.class │ │ │ │ │ ├── ContactsPage$4.class │ │ │ │ │ ├── ContactsPage.class │ │ │ │ │ ├── CountryAdapter.class │ │ │ │ │ ├── CountryListView.class │ │ │ │ │ ├── CountryPage$1.class │ │ │ │ │ ├── CountryPage$2$1$1.class │ │ │ │ │ ├── CountryPage$2$1.class │ │ │ │ │ ├── CountryPage$2.class │ │ │ │ │ ├── CountryPage.class │ │ │ │ │ ├── DefaultContactViewItem$1.class │ │ │ │ │ ├── DefaultContactViewItem$ViewHolder.class │ │ │ │ │ ├── DefaultContactViewItem.class │ │ │ │ │ ├── DefaultOnSendMessageListener.class │ │ │ │ │ ├── GroupListView$1.class │ │ │ │ │ ├── GroupListView$2.class │ │ │ │ │ ├── GroupListView$GroupAdapter.class │ │ │ │ │ ├── GroupListView$InnerAdapter.class │ │ │ │ │ ├── GroupListView$OnItemClickListener.class │ │ │ │ │ ├── GroupListView.class │ │ │ │ │ ├── IdentifyNumPage$1.class │ │ │ │ │ ├── IdentifyNumPage$10.class │ │ │ │ │ ├── IdentifyNumPage$11.class │ │ │ │ │ ├── IdentifyNumPage$12.class │ │ │ │ │ ├── IdentifyNumPage$13.class │ │ │ │ │ ├── IdentifyNumPage$14.class │ │ │ │ │ ├── IdentifyNumPage$2$1.class │ │ │ │ │ ├── IdentifyNumPage$2.class │ │ │ │ │ ├── IdentifyNumPage$3.class │ │ │ │ │ ├── IdentifyNumPage$4.class │ │ │ │ │ ├── IdentifyNumPage$5.class │ │ │ │ │ ├── IdentifyNumPage$6.class │ │ │ │ │ ├── IdentifyNumPage$7.class │ │ │ │ │ ├── IdentifyNumPage$8.class │ │ │ │ │ ├── IdentifyNumPage$9.class │ │ │ │ │ ├── IdentifyNumPage.class │ │ │ │ │ ├── RegisterPage$1$1.class │ │ │ │ │ ├── RegisterPage$1.class │ │ │ │ │ ├── RegisterPage$2.class │ │ │ │ │ ├── RegisterPage$3.class │ │ │ │ │ ├── RegisterPage.class │ │ │ │ │ ├── SMSReceiver.class │ │ │ │ │ ├── SearchEngine$1.class │ │ │ │ │ ├── SearchEngine$SearchIndex.class │ │ │ │ │ ├── SearchEngine.class │ │ │ │ │ ├── SmartVerifyPage$1.class │ │ │ │ │ ├── SmartVerifyPage$2.class │ │ │ │ │ ├── SmartVerifyPage$3.class │ │ │ │ │ ├── SmartVerifyPage$4.class │ │ │ │ │ ├── SmartVerifyPage$5.class │ │ │ │ │ ├── SmartVerifyPage.class │ │ │ │ │ └── layout │ │ │ │ │ ├── BackVerifyDialogLayout.class │ │ │ │ │ ├── BasePageLayout.class │ │ │ │ │ ├── ContactDetailPageLayout.class │ │ │ │ │ ├── ContactListPageLayout.class │ │ │ │ │ ├── ContactsListviewItemLayout.class │ │ │ │ │ ├── CountryListPageLayout.class │ │ │ │ │ ├── DrawableHelper.class │ │ │ │ │ ├── IdentifyNumPageLayout.class │ │ │ │ │ ├── LayoutFactory.class │ │ │ │ │ ├── ListviewTitleLayout.class │ │ │ │ │ ├── ProgressDialogLayout.class │ │ │ │ │ ├── RegisterPageLayout.class │ │ │ │ │ ├── Res$color.class │ │ │ │ │ ├── Res$id.class │ │ │ │ │ ├── Res.class │ │ │ │ │ ├── SendMsgDialogLayout.class │ │ │ │ │ ├── SizeHelper.class │ │ │ │ │ └── TitleLayout.class │ │ │ ├── incremental │ │ │ │ ├── aidl │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── dependency.store │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeAssets │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── merger.xml │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeResourcesandroidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── packageResourcesdebug │ │ │ │ │ └── merger.xml │ │ │ ├── manifest │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── tmp │ │ │ │ │ └── manifestMerger4953940124330776193.xml │ │ │ ├── res │ │ │ │ ├── merged │ │ │ │ │ └── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── smssdk_back_arrow.png │ │ │ │ │ │ ├── smssdk_back_arrow2.png │ │ │ │ │ │ ├── smssdk_cl_divider.png │ │ │ │ │ │ ├── smssdk_clear_search.png │ │ │ │ │ │ ├── smssdk_cp_default_avatar.png │ │ │ │ │ │ ├── smssdk_default_avatar.png │ │ │ │ │ │ ├── smssdk_dialog_back.9.png │ │ │ │ │ │ ├── smssdk_dialog_bg.9.png │ │ │ │ │ │ ├── smssdk_input_bg_focus.9.png │ │ │ │ │ │ ├── smssdk_input_bg_normal.9.png │ │ │ │ │ │ ├── smssdk_input_bg_special_focus.9.png │ │ │ │ │ │ ├── smssdk_input_bg_special_normal.9.png │ │ │ │ │ │ ├── smssdk_search_icon.png │ │ │ │ │ │ └── smssdk_sharesdk_icon.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── smssdk_btn_disenable.xml │ │ │ │ │ │ ├── smssdk_btn_enable.xml │ │ │ │ │ │ ├── smssdk_corners_bg.xml │ │ │ │ │ │ ├── smssdk_corners_bg_nor.xml │ │ │ │ │ │ ├── smssdk_corners_bg_pre.xml │ │ │ │ │ │ ├── smssdk_country_bg_selector.xml │ │ │ │ │ │ ├── smssdk_country_group_scroll_down.xml │ │ │ │ │ │ ├── smssdk_country_group_scroll_up.xml │ │ │ │ │ │ ├── smssdk_dialog_btn_back.xml │ │ │ │ │ │ └── smssdk_edittext_bg_selector.xml │ │ │ │ │ │ ├── raw │ │ │ │ │ │ └── smssdk_pydb │ │ │ │ │ │ ├── values-en │ │ │ │ │ │ └── values-en.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── resources-debug-androidTest.ap_ │ │ │ └── symbols │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── outputs │ │ │ └── aar │ │ │ │ └── smssdk-debug.aar │ │ └── tmp │ │ │ └── packageDebugJar │ │ │ └── MANIFEST.MF │ ├── gen │ │ └── cn │ │ │ └── smssdk │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── libs │ │ ├── MobLogCollector.jar │ │ ├── MobTools.jar │ │ ├── SMSSDK-1.3.1.jar │ │ ├── arm64-v8a │ │ │ └── libsmssdk.so │ │ ├── armeabi-v7a │ │ │ └── libsmssdk.so │ │ ├── armeabi │ │ │ └── libsmssdk.so │ │ ├── mips │ │ │ └── libsmssdk.so │ │ ├── mips64 │ │ │ └── libsmssdk.so │ │ ├── x86 │ │ │ └── libsmssdk.so │ │ └── x86_64 │ │ │ └── libsmssdk.so │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-xhdpi │ │ │ ├── smssdk_back_arrow.png │ │ │ ├── smssdk_back_arrow2.png │ │ │ ├── smssdk_cl_divider.png │ │ │ ├── smssdk_clear_search.png │ │ │ ├── smssdk_cp_default_avatar.png │ │ │ ├── smssdk_default_avatar.png │ │ │ ├── smssdk_dialog_back.9.png │ │ │ ├── smssdk_dialog_bg.9.png │ │ │ ├── smssdk_input_bg_focus.9.png │ │ │ ├── smssdk_input_bg_normal.9.png │ │ │ ├── smssdk_input_bg_special_focus.9.png │ │ │ ├── smssdk_input_bg_special_normal.9.png │ │ │ ├── smssdk_search_icon.png │ │ │ └── smssdk_sharesdk_icon.png │ │ ├── drawable │ │ │ ├── smssdk_btn_disenable.xml │ │ │ ├── smssdk_btn_enable.xml │ │ │ ├── smssdk_corners_bg.xml │ │ │ ├── smssdk_corners_bg_nor.xml │ │ │ ├── smssdk_corners_bg_pre.xml │ │ │ ├── smssdk_country_bg_selector.xml │ │ │ ├── smssdk_country_group_scroll_down.xml │ │ │ ├── smssdk_country_group_scroll_up.xml │ │ │ ├── smssdk_dialog_btn_back.xml │ │ │ └── smssdk_edittext_bg_selector.xml │ │ ├── raw │ │ │ └── smssdk_pydb │ │ ├── values-en │ │ │ ├── smssdk_arrays.xml │ │ │ ├── smssdk_errors.xml │ │ │ ├── smssdk_strings.xml │ │ │ └── strings.xml │ │ └── values │ │ │ ├── smssdk_arrays.xml │ │ │ ├── smssdk_colors.xml │ │ │ ├── smssdk_errors.xml │ │ │ ├── smssdk_strings.xml │ │ │ ├── smssdk_styles.xml │ │ │ └── strings.xml │ ├── smssdk.iml │ └── src │ │ └── cn │ │ └── smssdk │ │ └── gui │ │ ├── CommonDialog.java │ │ ├── ContactDetailPage.java │ │ ├── ContactEntry.java │ │ ├── ContactItemMaker.java │ │ ├── ContactsAdapter.java │ │ ├── ContactsListView.java │ │ ├── ContactsPage.java │ │ ├── CountryAdapter.java │ │ ├── CountryListView.java │ │ ├── CountryPage.java │ │ ├── DefaultContactViewItem.java │ │ ├── DefaultOnSendMessageListener.java │ │ ├── GroupListView.java │ │ ├── IdentifyNumPage.java │ │ ├── RegisterPage.java │ │ ├── SMSReceiver.java │ │ ├── SearchEngine.java │ │ ├── SmartVerifyPage.java │ │ └── layout │ │ ├── BackVerifyDialogLayout.java │ │ ├── BasePageLayout.java │ │ ├── ContactDetailPageLayout.java │ │ ├── ContactListPageLayout.java │ │ ├── ContactsListviewItemLayout.java │ │ ├── CountryListPageLayout.java │ │ ├── DrawableHelper.java │ │ ├── IdentifyNumPageLayout.java │ │ ├── LayoutFactory.java │ │ ├── ListviewTitleLayout.java │ │ ├── ProgressDialogLayout.java │ │ ├── RegisterPageLayout.java │ │ ├── Res.java │ │ ├── SendMsgDialogLayout.java │ │ ├── SizeHelper.java │ │ └── TitleLayout.java │ ├── study │ ├── .gitignore │ ├── build.gradle │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-rules.pro │ ├── src │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ding │ │ │ │ └── study │ │ │ │ └── ApplicationTest.java │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ding │ │ │ │ └── study │ │ │ │ ├── LessonPartActivity.java │ │ │ │ ├── LessonSectionActivity.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MyAboutUsActivity.java │ │ │ │ ├── MyDownloadActivity.java │ │ │ │ ├── MyLessonsCollectionActivity.java │ │ │ │ ├── MySettingCenterActivity.java │ │ │ │ ├── MyStudyRecordActivity.java │ │ │ │ ├── MyUserInformationActivity.java │ │ │ │ ├── RegisterActivity.java │ │ │ │ ├── WelcomeGuideActivity.java │ │ │ │ ├── WelcomeStartActivity.java │ │ │ │ ├── adapter │ │ │ │ ├── DepartmentCategoryAdapter.java │ │ │ │ ├── LessonListAdapter.java │ │ │ │ └── LessonSectionListAdapter.java │ │ │ │ ├── consts │ │ │ │ ├── CONSTS.java │ │ │ │ └── MyHttpURL.java │ │ │ │ ├── entity │ │ │ │ ├── Department.java │ │ │ │ ├── Lesson.java │ │ │ │ ├── LessonPart.java │ │ │ │ ├── LessonPartExchange.java │ │ │ │ ├── LessonPartResponse.java │ │ │ │ ├── LessonSection.java │ │ │ │ ├── LessonTest.java │ │ │ │ ├── StudentUser.java │ │ │ │ ├── StudentUserInfo.java │ │ │ │ └── Student_Lesson.java │ │ │ │ ├── exception │ │ │ │ ├── LessonException.java │ │ │ │ ├── StudentException.java │ │ │ │ └── UserException.java │ │ │ │ ├── fragment │ │ │ │ ├── FragmentMainIndexHome.java │ │ │ │ ├── FragmentMainIndexLesson.java │ │ │ │ └── FragmentMainIndexMy.java │ │ │ │ ├── http │ │ │ │ ├── HttpUtils.java │ │ │ │ ├── LoginAndRegisterException.java │ │ │ │ ├── MyHttpClient.java │ │ │ │ └── MyHttpURLConnection.java │ │ │ │ ├── service │ │ │ │ ├── DepartmentService.java │ │ │ │ ├── DepartmentServiceImpl.java │ │ │ │ ├── LessonService.java │ │ │ │ ├── UserService.java │ │ │ │ └── UserServiceImpl.java │ │ │ │ ├── test │ │ │ │ ├── ResponseObject.java │ │ │ │ └── TestData.java │ │ │ │ └── utils │ │ │ │ ├── ImageLoader.java │ │ │ │ └── SharedUtils.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── department_category_title_item_color_selector.xml │ │ │ ├── main_color_selector.xml │ │ │ ├── main_index_home_selector.xml │ │ │ ├── main_index_lesson_selector.xml │ │ │ └── main_index_my_selector.xml │ │ │ ├── layout │ │ │ ├── activity_lesson_part.xml │ │ │ ├── activity_lesson_section.xml │ │ │ ├── activity_login.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_my_about_us.xml │ │ │ ├── activity_my_download.xml │ │ │ ├── activity_my_lessons_collection.xml │ │ │ ├── activity_my_setting_center.xml │ │ │ ├── activity_my_study_record.xml │ │ │ ├── activity_register.xml │ │ │ ├── activity_user_information.xml │ │ │ ├── activity_welcome_guide.xml │ │ │ ├── activity_welcome_start.xml │ │ │ ├── department_category_title_item.xml │ │ │ ├── fragment_main_index_home.xml │ │ │ ├── fragment_main_index_lesson.xml │ │ │ ├── fragment_main_index_my.xml │ │ │ ├── lesson_item.xml │ │ │ ├── lesson_section_item.xml │ │ │ └── simple_spiner_department_item.xml │ │ │ ├── menu │ │ │ ├── menu_lesson_part.xml │ │ │ ├── menu_lesson_section.xml │ │ │ ├── menu_login.xml │ │ │ ├── menu_main.xml │ │ │ ├── menu_my_about_us.xml │ │ │ ├── menu_my_download.xml │ │ │ ├── menu_my_lessons_collection.xml │ │ │ ├── menu_my_setting_center.xml │ │ │ ├── menu_my_study_record.xml │ │ │ ├── menu_register.xml │ │ │ ├── menu_user_information.xml │ │ │ ├── menu_welcome.xml │ │ │ └── menu_welcome_guide.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── app_icon.jpg │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── ic_launcher.png │ │ │ ├── login_icon_tip.png │ │ │ ├── login_image_tip.png │ │ │ ├── main_index_home_normal.png │ │ │ ├── main_index_home_pressed.png │ │ │ ├── main_index_lesson_normal.png │ │ │ ├── main_index_lesson_pressed.png │ │ │ ├── main_index_my_normal.png │ │ │ ├── main_index_my_pressed.png │ │ │ ├── my_about_us.png │ │ │ ├── my_download.png │ │ │ ├── my_lesson_correct.png │ │ │ ├── my_logout.png │ │ │ ├── my_setting_center.png │ │ │ ├── my_study_record.png │ │ │ ├── my_top_background.jpg │ │ │ ├── time.png │ │ │ ├── user_head.png │ │ │ ├── welcome_guide_01.jpg │ │ │ ├── welcome_guide_02.jpg │ │ │ ├── welcome_guide_03.jpg │ │ │ ├── welcome_guide_button.png │ │ │ └── welcome_start.jpg │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── array.xml │ │ │ ├── color.xml │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ └── study.iml │ └── tabdemo │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── src │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── tabdemo │ │ │ └── ApplicationTest.java │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── tabdemo │ │ │ │ ├── Main2Activity.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_main2.xml │ │ │ ├── content_main.xml │ │ │ ├── content_main2.xml │ │ │ ├── user_info_demo.xml │ │ │ └── user_info_demo2.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── tabdemo │ │ └── ExampleUnitTest.java │ └── tabdemo.iml ├── onlineclass.sql ├── screenshots ├── applogin.jpeg ├── appregister.jpeg ├── class.jpg ├── index.jpg ├── myclass.jpg ├── myinfo.jpg ├── mystudent.jpg ├── webadmin.jpg ├── webstudent.jpg ├── welcome_guide_01.jpg ├── welcome_guide_02.jpg ├── welcome_guide_03.jpg ├── welcome_guide_03.png └── welcome_start.jpg └── web端源码 └── OnlineClass ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── classes │ │ ├── c3p0-config.xml │ │ ├── com │ │ │ ├── blackdog │ │ │ │ └── android │ │ │ │ │ └── servlet │ │ │ │ │ ├── DoPartExchange.class │ │ │ │ │ ├── GetLesson.class │ │ │ │ │ ├── GetPartExchange.class │ │ │ │ │ └── GetSectionAndPart.class │ │ │ ├── ding │ │ │ │ └── android │ │ │ │ │ ├── consts │ │ │ │ │ └── CONSTS.class │ │ │ │ │ └── servlet │ │ │ │ │ ├── LessonServlet.class │ │ │ │ │ ├── LoginServlet.class │ │ │ │ │ ├── RegisterServlet.class │ │ │ │ │ └── UserServlet.class │ │ │ └── mori │ │ │ │ ├── Exception │ │ │ │ ├── LessonException.class │ │ │ │ ├── StudentException.class │ │ │ │ ├── TeacherException.class │ │ │ │ └── UserException.class │ │ │ │ ├── android │ │ │ │ └── servlet │ │ │ │ │ ├── AndroidLoadLesson.class │ │ │ │ │ ├── AndroidLoadPartExchange.class │ │ │ │ │ └── AndroidRegistAndLogin.class │ │ │ │ ├── dao │ │ │ │ ├── AdminUserDao.class │ │ │ │ ├── LessonDao.class │ │ │ │ ├── PartDao.class │ │ │ │ ├── PartExchangeDao.class │ │ │ │ ├── PartResponseDao.class │ │ │ │ ├── SectionDao.class │ │ │ │ ├── StudentUserDao.class │ │ │ │ ├── StudentUserInfoDao.class │ │ │ │ ├── Student_LessonDao.class │ │ │ │ ├── TeacherUserDao.class │ │ │ │ └── Teacher_DepartmentDao.class │ │ │ │ ├── domain │ │ │ │ ├── AdminUser.class │ │ │ │ ├── Department.class │ │ │ │ ├── ExcelStudent.class │ │ │ │ ├── Lesson.class │ │ │ │ ├── PageBean.class │ │ │ │ ├── PageFormBean.class │ │ │ │ ├── Part.class │ │ │ │ ├── PartExchange.class │ │ │ │ ├── PartResponse.class │ │ │ │ ├── PowerForm.class │ │ │ │ ├── PowerUrlForm.class │ │ │ │ ├── Section.class │ │ │ │ ├── StudentUser.class │ │ │ │ ├── StudentUserInfo.class │ │ │ │ ├── Student_Lesson.class │ │ │ │ ├── TeacherUser.class │ │ │ │ └── Teacher_Department.class │ │ │ │ ├── filter │ │ │ │ ├── StudentFilter.class │ │ │ │ └── TeacherFilter.class │ │ │ │ ├── service │ │ │ │ ├── AdminService.class │ │ │ │ ├── ExchangeService.class │ │ │ │ ├── LessonService.class │ │ │ │ ├── StudentUserService.class │ │ │ │ └── TeacherService.class │ │ │ │ ├── servlet │ │ │ │ ├── LessonControl.class │ │ │ │ ├── PartExchangeControl.class │ │ │ │ ├── RegistAndLogin.class │ │ │ │ ├── StudentControl.class │ │ │ │ └── TeacherControl.class │ │ │ │ └── util │ │ │ │ ├── ExportExcel.class │ │ │ │ └── MoriExcelStudentUtil.class │ │ ├── developPage │ │ │ ├── CheckKeyForm.class │ │ │ ├── CheckMessageCode.class │ │ │ ├── CheckNickNameLength.class │ │ │ └── CheckPhoneRegex.class │ │ ├── test │ │ │ ├── testCheckKeyForm.class │ │ │ ├── testCkeckPhone.class │ │ │ ├── testExcel.class │ │ │ ├── testExchangeDao.class │ │ │ ├── testL_S.class │ │ │ ├── testLesson.class │ │ │ ├── testLessonService.class │ │ │ ├── testLoginDao.class │ │ │ ├── testPart.class │ │ │ ├── testRegistDao.class │ │ │ ├── testSection.class │ │ │ ├── testTeacher.class │ │ │ └── testUpdateStudentInfo.class │ │ └── userTest.txt │ ├── lib │ │ ├── c3p0-0.9.2-pre1.jar │ │ ├── commons-beanutils-1.8.3.jar │ │ ├── commons-collections-3.2.1.jar │ │ ├── commons-dbutils-1.4.jar │ │ ├── commons-fileupload-1.2.2.jar │ │ ├── commons-io-1.4.jar │ │ ├── commons-lang-2.5.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── ezmorph-1.0.6.jar │ │ ├── itcast-tools-1.4.2.jar │ │ ├── jersey-bundle-1.19.1.jar │ │ ├── json-lib-2.4-jdk15.jar │ │ ├── jstl.jar │ │ ├── junit-4.10.jar │ │ ├── log4j-1.2.13.jar │ │ ├── mchange-commons-0.2.jar │ │ ├── mysql-connector-java-5.1.28-bin.jar │ │ ├── poi-3.8-20120326.jar │ │ ├── poi-examples-3.8-20120326.jar │ │ ├── poi-excelant-3.8-20120326.jar │ │ ├── poi-ooxml-3.8-20120326.jar │ │ ├── poi-ooxml-schemas-3.8-20120326.jar │ │ ├── poi-scratchpad-3.8-20120326.jar │ │ ├── standard.jar │ │ ├── stax-api-1.0.1.jar │ │ └── xmlbeans-2.3.0.jar │ ├── photos │ │ └── 注释.txt │ └── web.xml ├── basehtml │ ├── class.html │ ├── class.jsp │ ├── index.jsp │ ├── login.jsp │ └── testclassBuild.jsp ├── css │ ├── Other.css │ ├── Otherpage.css │ ├── Stu-class.css │ ├── Student.css │ ├── YMain.css │ ├── class.css │ ├── discuss.css │ ├── login.css │ ├── main.css │ ├── manager.css │ ├── mp4.css │ ├── regist.css │ ├── t-course.css │ ├── t-homepage.css │ ├── t-message.css │ ├── t-myclass.css │ ├── t-mystudent.css │ ├── t-part.css │ └── webuploader.css ├── discuss.html ├── discuss.jsp ├── image │ ├── 4.jpg │ ├── 48.jpg │ ├── 53.jpg │ ├── Thumbs.db │ ├── VerifyCode.jpg │ ├── back.png │ ├── back2.png │ ├── background.jpg │ ├── book1.png │ ├── book2.png │ ├── book3.png │ ├── class1.jpg │ ├── collect.png │ ├── course.jpg │ ├── course1.png │ ├── delete.png │ ├── exit.png │ ├── go.png │ ├── head.png │ ├── homepage.jpg │ ├── java.jpg │ ├── lie.png │ ├── login-regist.jpg │ ├── logo.png │ ├── manager-pen.png │ ├── manager-pen.txt │ ├── manager.jpg │ ├── myclass.jpg │ ├── myclass1.jpg │ ├── mystu1.png │ ├── nothing.jpg │ ├── pen.png │ ├── shang.png │ ├── t-mystudent.jpg │ ├── t-part.jpg │ ├── upload.png │ ├── video.png │ ├── weichatOld.jpg │ ├── write.png │ └── xia.png ├── images │ └── 1.jpg ├── index.jsp ├── js │ ├── discuss.js │ ├── jquery-1.11.3.min.js │ ├── jquery-1.9.1.min.js │ ├── jquery.nicenav.js │ ├── login.js │ ├── mp4.js │ ├── myclass.js │ ├── t-course.js │ ├── t-homepage.js │ ├── t-myclass.js │ ├── t-mystudent.js │ ├── t-part.js │ └── webuploader.js ├── logined.jsp ├── manager.jsp ├── manager │ └── manager.jsp ├── mp4.html ├── mp4.jsp ├── myInfo.jsp ├── myStudent.jsp ├── part.jsp ├── photos │ └── 注释.txt ├── student │ ├── discuss.jsp │ └── mp4.jsp ├── t-homepage.html ├── t-myclass.jsp ├── t-mystudent.html ├── t-part.html ├── teacher │ ├── logined.jsp │ ├── myInfo.jsp │ ├── myStudent.jsp │ ├── part.jsp │ ├── test3.jsp │ └── testclassBuild.jsp ├── test3.jsp ├── testclassBuild.jsp └── video │ └── Thumbs.db └── src ├── c3p0-config.xml ├── com ├── blackdog │ └── android │ │ └── servlet │ │ ├── DoPartExchange.java │ │ ├── GetLesson.java │ │ ├── GetPartExchange.java │ │ └── GetSectionAndPart.java ├── ding │ └── android │ │ ├── consts │ │ └── CONSTS.java │ │ └── servlet │ │ ├── LessonServlet.java │ │ ├── LoginServlet.java │ │ ├── RegisterServlet.java │ │ └── UserServlet.java └── mori │ ├── Exception │ ├── LessonException.java │ ├── StudentException.java │ ├── TeacherException.java │ └── UserException.java │ ├── android │ └── servlet │ │ ├── AndroidLoadLesson.java │ │ ├── AndroidLoadPartExchange.java │ │ └── AndroidRegistAndLogin.java │ ├── dao │ ├── AdminUserDao.java │ ├── LessonDao.java │ ├── PartDao.java │ ├── PartExchangeDao.java │ ├── PartResponseDao.java │ ├── SectionDao.java │ ├── StudentUserDao.java │ ├── StudentUserInfoDao.java │ ├── Student_LessonDao.java │ ├── TeacherUserDao.java │ └── Teacher_DepartmentDao.java │ ├── domain │ ├── AdminUser.java │ ├── Department.java │ ├── ExcelStudent.java │ ├── Lesson.java │ ├── PageBean.java │ ├── PageFormBean.java │ ├── Part.java │ ├── PartExchange.java │ ├── PartResponse.java │ ├── PowerForm.java │ ├── PowerUrlForm.java │ ├── Section.java │ ├── StudentUser.java │ ├── StudentUserInfo.java │ ├── Student_Lesson.java │ ├── TeacherUser.java │ └── Teacher_Department.java │ ├── filter │ ├── StudentFilter.java │ └── TeacherFilter.java │ ├── service │ ├── AdminService.java │ ├── ExchangeService.java │ ├── LessonService.java │ ├── StudentUserService.java │ └── TeacherService.java │ ├── servlet │ ├── LessonControl.java │ ├── PartExchangeControl.java │ ├── RegistAndLogin.java │ ├── StudentControl.java │ └── TeacherControl.java │ └── util │ ├── ExportExcel.java │ └── MoriExcelStudentUtil.java ├── developPage ├── CheckKeyForm.java ├── CheckMessageCode.java ├── CheckNickNameLength.java └── CheckPhoneRegex.java ├── test ├── testCheckKeyForm.java ├── testCkeckPhone.java ├── testExcel.java ├── testExchangeDao.java ├── testL_S.java ├── testLesson.java ├── testLessonService.java ├── testLoginDao.java ├── testPart.java ├── testRegistDao.java ├── testSection.java ├── testTeacher.java └── testUpdateStudentInfo.java └── userTest.txt /app安装包/app-classonline.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app安装包/app-classonline.apk -------------------------------------------------------------------------------- /app端源码/MyApplication/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /app端源码/MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | MyApplication -------------------------------------------------------------------------------- /app端源码/MyApplication/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app端源码/MyApplication/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app端源码/MyApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/libs/android-support-v4.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/java/schoolstudy/service/ServiceException.java: -------------------------------------------------------------------------------- 1 | package schoolstudy.service; 2 | 3 | /** 4 | * 登录与注册的类 5 | */ 6 | public class ServiceException extends Exception { 7 | public ServiceException(String error){ 8 | super(error); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/app_icon.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/background.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/background_news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/background_news.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/btn_log_out_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_engineer_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_engineer_manage.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_finance.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_foreign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_foreign.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_internet.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_law.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_math.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_money_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_money_transfer.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/department_more.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/department_more.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/green_bg_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/ic_media_embed_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/ic_media_embed_play.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/ic_menu_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/ic_menu_back.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/index_my_button_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/main_index_home_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_home_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/main_index_home_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_lesson_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/main_index_lesson_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_lesson_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/main_index_lesson_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_my_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/main_index_my_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_my_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/main_index_my_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/main_index_my_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/middle_gray_depressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/middle_gray_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/my_btn_depressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/my_btn_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/perm_group_personal_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/perm_group_personal_info.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/red_bg_defocused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/red_bg_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/school.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/school.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/drawable/send.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/drawable/send.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/layout/activity_welcome_start.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/app_icon.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/arrow_left.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/arrow_right.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/login_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/login_background.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/login_icon_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/login_icon_tip.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_home_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_home_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_home_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_lesson_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_lesson_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_lesson_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_lesson_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_my_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_my_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_my_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/main_index_my_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_about_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_about_us.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_download.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_lesson_correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_lesson_correct.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_logout.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_setting_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_setting_center.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_study_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_study_record.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_top_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/my_top_background.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/no.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/user_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/user_head.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_01.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_02.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_03.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_guide_button.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/welcome_start.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-hdpi/xia_hua_xian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-hdpi/xia_hua_xian.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 06 18:30:18 CST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', 'smssdk' 2 | include ':smssdk' 3 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/BuildConfig.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$array.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$attr.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$color.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$drawable.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$raw.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$string.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R$style.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/R.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CommonDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CommonDialog.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactDetailPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactDetailPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactDetailPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactDetailPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactDetailPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactDetailPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactEntry.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactItemMaker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactItemMaker.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView$GroupAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView$GroupAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView$InnerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView$InnerAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsListView.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$3$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage$4.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/ContactsPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryListView.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$2$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$2$1$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$2$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/CountryPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultContactViewItem$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultContactViewItem$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultContactViewItem$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultContactViewItem$ViewHolder.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultContactViewItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultContactViewItem.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultOnSendMessageListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/DefaultOnSendMessageListener.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$GroupAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$GroupAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$InnerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$InnerAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$OnItemClickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView$OnItemClickListener.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/GroupListView.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$10.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$11.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$12.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$13.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$14.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$14.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$2$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$4.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$5.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$6.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$7.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$8.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage$9.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/IdentifyNumPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$1$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/RegisterPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SMSReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SMSReceiver.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SearchEngine$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SearchEngine$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SearchEngine$SearchIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SearchEngine$SearchIndex.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SearchEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SearchEngine.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$4.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage$5.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/SmartVerifyPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/BackVerifyDialogLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/BackVerifyDialogLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/BasePageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/BasePageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ContactDetailPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ContactDetailPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ContactListPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ContactListPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ContactsListviewItemLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ContactsListviewItemLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/CountryListPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/CountryListPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/DrawableHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/DrawableHelper.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/IdentifyNumPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/IdentifyNumPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/LayoutFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/LayoutFactory.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ListviewTitleLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ListviewTitleLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ProgressDialogLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/ProgressDialogLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/RegisterPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/RegisterPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/Res$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/Res$color.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/Res$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/Res$id.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/Res.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/Res.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/SendMsgDialogLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/SendMsgDialogLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/SizeHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/SizeHelper.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/TitleLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/classes/cn/smssdk/gui/layout/TitleLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_back_arrow.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_back_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_back_arrow2.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_cl_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_cl_divider.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_clear_search.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_cp_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_cp_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_dialog_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_dialog_back.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_dialog_bg.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_special_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_special_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_special_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_input_bg_special_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_search_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_sharesdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/res/crunch/drawable-xhdpi/smssdk_sharesdk_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/bin/smssdk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/bin/smssdk.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/classes.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/libs/MobLogCollector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/libs/MobLogCollector.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/libs/MobTools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/libs/MobTools.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/libs/SMSSDK-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/libs/SMSSDK-1.3.1.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_back_arrow.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_back_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_back_arrow2.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_cl_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_cl_divider.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_clear_search.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_cp_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_cp_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_dialog_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_dialog_back.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_dialog_bg.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_special_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_special_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_special_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_input_bg_special_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_search_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_sharesdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/drawable-xhdpi/smssdk_sharesdk_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/raw/smssdk_pydb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/bundles/debug/res/raw/smssdk_pydb -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$array.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$color.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$drawable.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$raw.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$string.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R$style.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/R.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/BuildConfig.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$array.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$attr.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$color.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$drawable.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$raw.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$string.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R$style.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/androidTest/debug/cn/smssdk/test/R.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/BuildConfig.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$array.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$attr.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$color.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$drawable.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$raw.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$string.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R$style.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/R.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CommonDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CommonDialog.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactDetailPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactDetailPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactDetailPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactDetailPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactDetailPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactDetailPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactEntry.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactItemMaker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactItemMaker.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView$GroupAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView$GroupAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView$InnerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView$InnerAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsListView.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$3$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$3$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage$4.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/ContactsPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryListView.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$2$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$2$1$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$2$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/CountryPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultContactViewItem$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultContactViewItem$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultContactViewItem$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultContactViewItem$ViewHolder.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultContactViewItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultContactViewItem.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultOnSendMessageListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/DefaultOnSendMessageListener.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$GroupAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$GroupAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$InnerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$InnerAdapter.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$OnItemClickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView$OnItemClickListener.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/GroupListView.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$10.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$11.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$12.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$13.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$14.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$14.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$2$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$4.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$5.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$6.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$7.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$8.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage$9.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/IdentifyNumPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$1$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/RegisterPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SMSReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SMSReceiver.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SearchEngine$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SearchEngine$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SearchEngine$SearchIndex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SearchEngine$SearchIndex.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SearchEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SearchEngine.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$1.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$2.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$3.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$4.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage$5.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/SmartVerifyPage.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/BackVerifyDialogLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/BackVerifyDialogLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/BasePageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/BasePageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ContactDetailPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ContactDetailPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ContactListPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ContactListPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ContactsListviewItemLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ContactsListviewItemLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/CountryListPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/CountryListPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/DrawableHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/DrawableHelper.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/IdentifyNumPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/IdentifyNumPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/LayoutFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/LayoutFactory.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ListviewTitleLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ListviewTitleLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ProgressDialogLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/ProgressDialogLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/RegisterPageLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/RegisterPageLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/Res$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/Res$color.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/Res$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/Res$id.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/Res.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/Res.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/SendMsgDialogLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/SendMsgDialogLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/SizeHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/SizeHelper.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/TitleLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/classes/debug/cn/smssdk/gui/layout/TitleLayout.class -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/incremental/aidl/androidTest/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_back_arrow.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_back_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_back_arrow2.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_cl_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_cl_divider.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_clear_search.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_cp_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_cp_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_dialog_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_dialog_back.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_dialog_bg.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_special_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_special_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_special_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_input_bg_special_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_search_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_sharesdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi/smssdk_sharesdk_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/raw/smssdk_pydb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/merged/androidTest/debug/raw/smssdk_pydb -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/outputs/aar/smssdk-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/build/outputs/aar/smssdk-debug.aar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/build/tmp/packageDebugJar/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/gen/cn/smssdk/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package cn.smssdk; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/MobLogCollector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/MobLogCollector.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/MobTools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/MobTools.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/SMSSDK-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/SMSSDK-1.3.1.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/arm64-v8a/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/arm64-v8a/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/armeabi-v7a/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/armeabi-v7a/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/armeabi/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/armeabi/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/mips/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/mips/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/mips64/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/mips64/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/x86/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/x86/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/libs/x86_64/libsmssdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/libs/x86_64/libsmssdk.so -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_back_arrow.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_back_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_back_arrow2.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_cl_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_cl_divider.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_clear_search.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_cp_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_cp_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_default_avatar.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_dialog_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_dialog_back.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_dialog_bg.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_special_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_special_focus.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_special_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_input_bg_special_normal.9.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_search_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_sharesdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/drawable-xhdpi/smssdk_sharesdk_icon.png -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_btn_disenable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_btn_enable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_corners_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_country_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_country_group_scroll_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_country_group_scroll_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/drawable/smssdk_dialog_btn_back.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/raw/smssdk_pydb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/smssdk/res/raw/smssdk_pydb -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/values-en/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | no permission to read contacts 4 | 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 应用无权限读取通讯录 4 | 5 | -------------------------------------------------------------------------------- /app端源码/MyApplication/smssdk/src/cn/smssdk/gui/DefaultOnSendMessageListener.java: -------------------------------------------------------------------------------- 1 | package cn.smssdk.gui; 2 | 3 | import cn.smssdk.OnSendMessageHandler; 4 | 5 | public class DefaultOnSendMessageListener implements OnSendMessageHandler{ 6 | 7 | public boolean onSendMessage(String country, String phone) { 8 | return false; 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /app端源码/MyApplication/study/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app端源码/MyApplication/study/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/libs/android-support-v4.jar -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/java/com/example/ding/study/consts/CONSTS.java: -------------------------------------------------------------------------------- 1 | package com.example.ding.study.consts; 2 | 3 | /** 4 | * Created by ding on 2015/10/13. 5 | */ 6 | public class CONSTS { 7 | 8 | public static final String HOST = ""; 9 | 10 | //课程数据URL 11 | public static final String Lessons_Data_URL = ""; 12 | 13 | } 14 | -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/java/com/example/ding/study/http/LoginAndRegisterException.java: -------------------------------------------------------------------------------- 1 | package com.example.ding.study.http; 2 | 3 | /** 4 | * 登录与注册的类 5 | */ 6 | public class LoginAndRegisterException extends Exception { 7 | public LoginAndRegisterException(String error){ 8 | super(error); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/drawable/main_color_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/layout/activity_welcome_start.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/app_icon.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/arrow_left.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/arrow_right.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/login_icon_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/login_icon_tip.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/login_image_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/login_image_tip.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_home_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_home_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_home_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_lesson_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_lesson_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_lesson_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_lesson_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_my_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_my_normal.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_my_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/main_index_my_pressed.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_about_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_about_us.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_download.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_lesson_correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_lesson_correct.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_logout.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_setting_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_setting_center.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_study_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_study_record.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_top_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/my_top_background.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/time.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/user_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/user_head.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_01.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_02.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_03.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_guide_button.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-hdpi/welcome_start.jpg -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/study/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/study/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/tabdemo/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/tabdemo/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/tabdemo/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/tabdemo/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/app端源码/MyApplication/tabdemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /app端源码/MyApplication/tabdemo/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TabDemo 3 | Settings 4 | Main2Activity 5 | 6 | -------------------------------------------------------------------------------- /screenshots/applogin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/applogin.jpeg -------------------------------------------------------------------------------- /screenshots/appregister.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/appregister.jpeg -------------------------------------------------------------------------------- /screenshots/class.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/class.jpg -------------------------------------------------------------------------------- /screenshots/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/index.jpg -------------------------------------------------------------------------------- /screenshots/myclass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/myclass.jpg -------------------------------------------------------------------------------- /screenshots/myinfo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/myinfo.jpg -------------------------------------------------------------------------------- /screenshots/mystudent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/mystudent.jpg -------------------------------------------------------------------------------- /screenshots/webadmin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/webadmin.jpg -------------------------------------------------------------------------------- /screenshots/webstudent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/webstudent.jpg -------------------------------------------------------------------------------- /screenshots/welcome_guide_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/welcome_guide_01.jpg -------------------------------------------------------------------------------- /screenshots/welcome_guide_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/welcome_guide_02.jpg -------------------------------------------------------------------------------- /screenshots/welcome_guide_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/welcome_guide_03.jpg -------------------------------------------------------------------------------- /screenshots/welcome_guide_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/welcome_guide_03.png -------------------------------------------------------------------------------- /screenshots/welcome_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/screenshots/welcome_start.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/DoPartExchange.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/DoPartExchange.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/GetLesson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/GetLesson.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/GetPartExchange.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/GetPartExchange.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/GetSectionAndPart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/blackdog/android/servlet/GetSectionAndPart.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/consts/CONSTS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/consts/CONSTS.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/LessonServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/LessonServlet.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/LoginServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/LoginServlet.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/RegisterServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/RegisterServlet.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/UserServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/ding/android/servlet/UserServlet.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/LessonException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/LessonException.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/StudentException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/StudentException.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/TeacherException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/TeacherException.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/UserException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/Exception/UserException.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/android/servlet/AndroidLoadLesson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/android/servlet/AndroidLoadLesson.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/android/servlet/AndroidLoadPartExchange.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/android/servlet/AndroidLoadPartExchange.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/android/servlet/AndroidRegistAndLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/android/servlet/AndroidRegistAndLogin.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/AdminUserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/AdminUserDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/LessonDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/LessonDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/PartDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/PartDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/PartExchangeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/PartExchangeDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/PartResponseDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/PartResponseDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/SectionDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/SectionDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/StudentUserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/StudentUserDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/StudentUserInfoDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/StudentUserInfoDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/Student_LessonDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/Student_LessonDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/TeacherUserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/TeacherUserDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/Teacher_DepartmentDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/dao/Teacher_DepartmentDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/AdminUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/AdminUser.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Department.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Department.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/ExcelStudent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/ExcelStudent.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Lesson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Lesson.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PageBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PageBean.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PageFormBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PageFormBean.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Part.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Part.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PartExchange.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PartExchange.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PartResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PartResponse.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PowerForm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PowerForm.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PowerUrlForm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/PowerUrlForm.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Section.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Section.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/StudentUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/StudentUser.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/StudentUserInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/StudentUserInfo.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Student_Lesson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Student_Lesson.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/TeacherUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/TeacherUser.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Teacher_Department.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/domain/Teacher_Department.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/filter/StudentFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/filter/StudentFilter.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/filter/TeacherFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/filter/TeacherFilter.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/AdminService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/AdminService.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/ExchangeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/ExchangeService.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/LessonService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/LessonService.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/StudentUserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/StudentUserService.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/TeacherService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/service/TeacherService.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/LessonControl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/LessonControl.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/PartExchangeControl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/PartExchangeControl.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/RegistAndLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/RegistAndLogin.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/StudentControl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/StudentControl.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/TeacherControl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/servlet/TeacherControl.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/util/ExportExcel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/util/ExportExcel.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/util/MoriExcelStudentUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/com/mori/util/MoriExcelStudentUtil.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckKeyForm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckKeyForm.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckMessageCode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckMessageCode.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckNickNameLength.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckNickNameLength.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckPhoneRegex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/developPage/CheckPhoneRegex.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testCheckKeyForm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testCheckKeyForm.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testCkeckPhone.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testCkeckPhone.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testExcel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testExcel.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testExchangeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testExchangeDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testL_S.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testL_S.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testLesson.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testLesson.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testLessonService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testLessonService.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testLoginDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testLoginDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testPart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testPart.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testRegistDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testRegistDao.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testSection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testSection.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testTeacher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testTeacher.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testUpdateStudentInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/classes/test/testUpdateStudentInfo.class -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/classes/userTest.txt: -------------------------------------------------------------------------------- 1 | 流程 2 | 注册教师→管理员审核→登录→建设课程→上传文件→导入学生→导出EXCEL表 APP在导入学生后 选择表中一个学生进行登录→ 3 | 默认收藏了这个老师的课程 APP相关操作另外展示 先点进去 点击节 看视频 OK 4 | 5 | 其它各个零碎的展示 帖子发表后刷新 等同于再发一次请求 会有重复ID异常 我处理了 6 | 7 | 评论 细节答辩 个人信息 展示已有的学习资源 浏览 扒拉扒拉 扒拉 -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/c3p0-0.9.2-pre1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/c3p0-0.9.2-pre1.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-beanutils-1.8.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-beanutils-1.8.3.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-dbutils-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-dbutils-1.4.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-fileupload-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-fileupload-1.2.2.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-io-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-io-1.4.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-lang-2.5.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/itcast-tools-1.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/itcast-tools-1.4.2.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/jersey-bundle-1.19.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/jersey-bundle-1.19.1.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/json-lib-2.4-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/json-lib-2.4-jdk15.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/junit-4.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/junit-4.10.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/log4j-1.2.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/log4j-1.2.13.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/mchange-commons-0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/mchange-commons-0.2.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/mysql-connector-java-5.1.28-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/mysql-connector-java-5.1.28-bin.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-3.8-20120326.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-examples-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-examples-3.8-20120326.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-excelant-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-excelant-3.8-20120326.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-ooxml-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-ooxml-3.8-20120326.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-ooxml-schemas-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-ooxml-schemas-3.8-20120326.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-scratchpad-3.8-20120326.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/poi-scratchpad-3.8-20120326.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/stax-api-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/stax-api-1.0.1.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/lib/xmlbeans-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/WEB-INF/lib/xmlbeans-2.3.0.jar -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/WEB-INF/photos/注释.txt: -------------------------------------------------------------------------------- 1 | 该目录本来作为上传图片的目录 安全 不怕上传JSP破坏服务器 但 由于回显图片无法访问 所以把目录上移 该目录作废 -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/css/Other.css: -------------------------------------------------------------------------------- 1 | 2 | /*我的课程 样式代码*/ 3 | .myclass { 4 | margin:30px 30px; 5 | } -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/4.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/48.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/53.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/Thumbs.db -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/VerifyCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/VerifyCode.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/back.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/back2.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/background.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/book1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/book1.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/book2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/book2.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/book3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/book3.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/class1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/class1.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/collect.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/course.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/course.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/course1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/course1.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/delete.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/exit.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/go.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/head.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/homepage.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/java.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/lie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/lie.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/login-regist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/login-regist.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/logo.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/manager-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/manager-pen.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/manager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/manager.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/myclass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/myclass.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/myclass1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/myclass1.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/mystu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/mystu1.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/nothing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/nothing.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/pen.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/shang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/shang.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/t-mystudent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/t-mystudent.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/t-part.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/t-part.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/upload.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/video.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/weichatOld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/weichatOld.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/write.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/write.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/image/xia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/image/xia.png -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/images/1.jpg -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/photos/注释.txt: -------------------------------------------------------------------------------- 1 | 该目录本来作为上传图片的目录 安全 不怕上传JSP破坏服务器 但 由于回显图片无法访问 所以把目录上移 该目录作废 -------------------------------------------------------------------------------- /web端源码/OnlineClass/WebContent/video/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingYonghui/OnlineClass/547a6a7748363268523b6d6ee883002fa89de2f8/web端源码/OnlineClass/WebContent/video/Thumbs.db -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/com/ding/android/consts/CONSTS.java: -------------------------------------------------------------------------------- 1 | package com.ding.android.consts; 2 | 3 | 4 | 5 | /** 6 | * Created by ding on 2015/10/13. 7 | */ 8 | public class CONSTS { 9 | 10 | public static final String IP = "http://120.24.5.239:8080"; 11 | 12 | 13 | } 14 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/com/mori/Exception/UserException.java: -------------------------------------------------------------------------------- 1 | package com.mori.Exception; 2 | 3 | public class UserException extends Exception { 4 | 5 | public UserException() { 6 | super(); 7 | // TODO Auto-generated constructor stub 8 | } 9 | 10 | public UserException(String message) { 11 | super(message); 12 | // TODO Auto-generated constructor stub 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/com/mori/android/servlet/AndroidLoadLesson.java: -------------------------------------------------------------------------------- 1 | package com.mori.android.servlet; 2 | 3 | import javax.servlet.http.HttpServlet; 4 | 5 | public class AndroidLoadLesson extends HttpServlet { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/com/mori/android/servlet/AndroidLoadPartExchange.java: -------------------------------------------------------------------------------- 1 | package com.mori.android.servlet; 2 | 3 | public class AndroidLoadPartExchange { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/developPage/CheckMessageCode.java: -------------------------------------------------------------------------------- 1 | package developPage; 2 | 3 | public class CheckMessageCode { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/developPage/CheckNickNameLength.java: -------------------------------------------------------------------------------- 1 | package developPage; 2 | 3 | public class CheckNickNameLength { 4 | /* 5 | * 6 | */ 7 | 8 | public boolean check(String name) 9 | { 10 | 11 | return name.length()>=2&&name.length()<20; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/developPage/CheckPhoneRegex.java: -------------------------------------------------------------------------------- 1 | package developPage; 2 | 3 | public class CheckPhoneRegex { 4 | /* 5 | * ^[1][358][0-9]{9}$ 6 | */ 7 | 8 | public boolean check(String phone) 9 | { 10 | 11 | return phone.matches("^[1][358][0-9]{9}$"); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/test/testCheckKeyForm.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | import org.junit.Test; 4 | 5 | import developPage.CheckKeyForm; 6 | 7 | 8 | public class testCheckKeyForm { 9 | @Test 10 | public void testCheck() 11 | { 12 | CheckKeyForm cKF=new CheckKeyForm(); 13 | System.out.print(cKF.check("1234567890122a")); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/test/testCkeckPhone.java: -------------------------------------------------------------------------------- 1 | package test; 2 | 3 | import org.junit.Test; 4 | 5 | import developPage.CheckPhoneRegex; 6 | 7 | public class testCkeckPhone { 8 | @Test 9 | public void testCheckPhone() 10 | { 11 | CheckPhoneRegex cpr=new CheckPhoneRegex(); 12 | System.out.print(cpr.check("13716888886")); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /web端源码/OnlineClass/src/userTest.txt: -------------------------------------------------------------------------------- 1 | 流程 2 | 注册教师→管理员审核→登录→建设课程→上传文件→导入学生→导出EXCEL表 APP在导入学生后 选择表中一个学生进行登录→ 3 | 默认收藏了这个老师的课程 APP相关操作另外展示 先点进去 点击节 看视频 OK 4 | 5 | 其它各个零碎的展示 帖子发表后刷新 等同于再发一次请求 会有重复ID异常 我处理了 6 | 7 | 评论 细节答辩 个人信息 展示已有的学习资源 浏览 扒拉扒拉 扒拉 --------------------------------------------------------------------------------