├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── debug │ ├── app-debug.apk │ └── output.json ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── tome │ │ └── framedemomo2 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── tome │ │ │ └── framedemomo2 │ │ │ └── MyApplication.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── title_logo.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── tome │ └── framedemomo2 │ └── ExampleUnitTest.java ├── baseLib ├── core │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── tome │ │ │ └── core │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── tome │ │ │ │ └── core │ │ │ │ ├── adapter │ │ │ │ ├── BaseFragmentAdapter.java │ │ │ │ ├── BaseFragmentStateAdapter.java │ │ │ │ └── BaseViewPagerAdapter.java │ │ │ │ ├── base │ │ │ │ ├── BaseEventbusBean.java │ │ │ │ ├── BaseHost.java │ │ │ │ ├── BaseObserver.java │ │ │ │ ├── HostType.java │ │ │ │ ├── mvc │ │ │ │ │ ├── BaseVcActivity.java │ │ │ │ │ ├── BaseVcFragment.java │ │ │ │ │ ├── BaseVcListActivity.java │ │ │ │ │ └── inter │ │ │ │ │ │ ├── BaseView.java │ │ │ │ │ │ └── ILoadingDialogView.java │ │ │ │ └── mvp │ │ │ │ │ ├── BasePresenter.java │ │ │ │ │ ├── BaseVpActivity.java │ │ │ │ │ ├── BaseVpFragment.java │ │ │ │ │ ├── BaseVpListActivity.java │ │ │ │ │ ├── DisposablePool.java │ │ │ │ │ └── inter │ │ │ │ │ ├── ICommentModel.java │ │ │ │ │ ├── IDisposablePool.java │ │ │ │ │ ├── IModel.java │ │ │ │ │ ├── IPresenter.java │ │ │ │ │ ├── IView.java │ │ │ │ │ └── MvpCallback.java │ │ │ │ ├── constants │ │ │ │ ├── ActivityControl.java │ │ │ │ └── BaseApplication.java │ │ │ │ ├── helper │ │ │ │ └── HUDFactory.java │ │ │ │ ├── net │ │ │ │ ├── HttpHelper.java │ │ │ │ ├── HttpLogger.java │ │ │ │ ├── ServerException.java │ │ │ │ ├── common_callback │ │ │ │ │ └── INetCallback.java │ │ │ │ ├── file_download │ │ │ │ │ └── FileDownLoadCallback.java │ │ │ │ ├── file_upload │ │ │ │ │ ├── FileRequestMapBuild.java │ │ │ │ │ ├── FileRequestMapParams.java │ │ │ │ │ ├── ProgressResponseCallBack.java │ │ │ │ │ ├── UIProgressResponseCallBack.java │ │ │ │ │ └── UploadProgressRequestBody.java │ │ │ │ └── params │ │ │ │ │ ├── RequestMapBuild.java │ │ │ │ │ └── RequestMapParams.java │ │ │ │ ├── util │ │ │ │ ├── ActivityUtils.java │ │ │ │ ├── AppUtils.java │ │ │ │ ├── Arith.java │ │ │ │ ├── BarUtils.java │ │ │ │ ├── CleanUtils.java │ │ │ │ ├── CloseUtils.java │ │ │ │ ├── ConvertUtils.java │ │ │ │ ├── DeviceUtils.java │ │ │ │ ├── EncodeUtils.java │ │ │ │ ├── FileUploadUtils.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── FragmentUtils.java │ │ │ │ ├── GlideCacheUtil.java │ │ │ │ ├── ImageUtils.java │ │ │ │ ├── IntentUtils.java │ │ │ │ ├── JsonUtil.java │ │ │ │ ├── KeyboardUtils.java │ │ │ │ ├── L.java │ │ │ │ ├── LogUtil.java │ │ │ │ ├── Md5.java │ │ │ │ ├── NetUtils.java │ │ │ │ ├── ObjectUtils.java │ │ │ │ ├── OtherUtils.java │ │ │ │ ├── PhoneUtils.java │ │ │ │ ├── PictureCompressionUtils.java │ │ │ │ ├── RxUtils.java │ │ │ │ ├── SPUtil.java │ │ │ │ ├── ShellUtils.java │ │ │ │ ├── SnackbarUtils.java │ │ │ │ ├── SpannableStringUtils.java │ │ │ │ ├── StatuBarCompat.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── TimeUtils.java │ │ │ │ ├── ToastUtils.java │ │ │ │ └── widgetUtils │ │ │ │ │ ├── SoftHideKeyBoardUtil.java │ │ │ │ │ ├── TabLayoutUtils.java │ │ │ │ │ └── WebViewInitUtils.java │ │ │ │ └── widget │ │ │ │ ├── CircularImageView.java │ │ │ │ ├── DividerGridItemDecoration.java │ │ │ │ ├── FlowLayout.java │ │ │ │ ├── MyRecyclerView.java │ │ │ │ ├── ResHelper.java │ │ │ │ ├── SuperDividerItemDecoration.java │ │ │ │ ├── ViewHelper.java │ │ │ │ └── roundWidget │ │ │ │ ├── AlphaButton.java │ │ │ │ ├── AlphaViewHelper.java │ │ │ │ ├── RoundButton.java │ │ │ │ └── RoundButtonDrawable.java │ │ └── res │ │ │ ├── anim │ │ │ ├── actionsheet_dialog_in.xml │ │ │ ├── actionsheet_dialog_out.xml │ │ │ ├── otherui_bottom_dialog_enter.xml │ │ │ └── otherui_bottom_dialog_exit.xml │ │ │ ├── color │ │ │ ├── otherui_selector_text_color_tab.xml │ │ │ ├── qmui_btn_blue_border.xml │ │ │ ├── qmui_btn_blue_text.xml │ │ │ ├── qmui_s_transparent.xml │ │ │ └── s_btn_blue_border.xml │ │ │ ├── drawable │ │ │ ├── circle_bead.xml │ │ │ ├── circle_shape.xml │ │ │ ├── empty_button_selector.xml │ │ │ ├── ic_arrow_back_white_24dp.xml │ │ │ ├── ic_time.xml │ │ │ ├── icon_like.xml │ │ │ ├── icon_like_article_not_selected.xml │ │ │ ├── otherui_bg_alertbutton_bottom.xml │ │ │ ├── otherui_bg_alertbutton_left.xml │ │ │ ├── otherui_bg_alertbutton_right.xml │ │ │ ├── otherui_shape_bg_toast.xml │ │ │ ├── selector_search_item_bac.xml │ │ │ ├── selector_tag_red_background.xml │ │ │ ├── shap_line.xml │ │ │ ├── shap_ring_gray.xml │ │ │ ├── shape_home_search_bg.xml │ │ │ ├── shape_main_color_circle.xml │ │ │ ├── shape_tag_green_background.xml │ │ │ ├── shape_tag_red_background_normal.xml │ │ │ ├── shape_tag_red_background_press.xml │ │ │ ├── shape_view.xml │ │ │ ├── spin_animation.xml │ │ │ └── trans_bg.png │ │ │ ├── layout │ │ │ ├── base_empty_view_fragment.xml │ │ │ ├── common_toolbar.xml │ │ │ ├── fragment_tab_list.xml │ │ │ ├── layout_empty.xml │ │ │ ├── layout_error.xml │ │ │ ├── layout_loading.xml │ │ │ ├── otherui_activity_toast.xml │ │ │ ├── otherui_item_area.xml │ │ │ ├── otherui_layout_alertview.xml │ │ │ ├── qmui_empty_view.xml │ │ │ ├── title_bar_content.xml │ │ │ ├── title_search_layout.xml │ │ │ └── view_alertdialog.xml │ │ │ ├── mipmap-xhdpi │ │ │ ├── frame_001.png │ │ │ ├── frame_002.png │ │ │ ├── frame_003.png │ │ │ ├── frame_004.png │ │ │ ├── frame_005.png │ │ │ ├── frame_006.png │ │ │ ├── frame_007.png │ │ │ ├── frame_008.png │ │ │ ├── frame_009.png │ │ │ ├── frame_010.png │ │ │ ├── frame_011.png │ │ │ ├── frame_012.png │ │ │ ├── frame_013.png │ │ │ ├── frame_014.png │ │ │ ├── frame_015.png │ │ │ ├── frame_016.png │ │ │ ├── frame_017.png │ │ │ ├── frame_018.png │ │ │ ├── frame_019.png │ │ │ ├── frame_020.png │ │ │ ├── ic_empty_picture.png │ │ │ ├── ic_image_loading.png │ │ │ ├── icon_empty.png │ │ │ └── icon_error.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── back_img.png │ │ │ ├── error404.webp │ │ │ ├── ic_home_types.png │ │ │ ├── ic_language.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_search.png │ │ │ ├── ic_tab_cart_unpress.png │ │ │ └── otherui_ico_select_true.png │ │ │ ├── values-1184x720 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-1280x720 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-1334x750 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-1776x1080 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-1794x1080 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-1812x1080 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-1920x1080 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-2560x1440 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-800x480 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-854x480 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ ├── values-960x540 │ │ │ ├── lay_x.xml │ │ │ └── lay_y.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── lay_x.xml │ │ │ ├── lay_y.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── tome │ │ └── core │ │ └── ExampleUnitTest.java └── router │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── fec │ │ └── core │ │ └── router │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── fec │ │ │ └── core │ │ │ └── router │ │ │ └── arouter │ │ │ ├── IntentKV.java │ │ │ ├── RouterCenter.java │ │ │ ├── RouterConfig.java │ │ │ └── RouterURLS.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── fec │ └── core │ └── router │ └── ExampleUnitTest.java ├── config.gradle ├── frameKey.jks ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module_common_ui ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── tome │ │ └── module_common │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── customControl.json │ │ └── province.json │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── tome │ │ │ ├── module │ │ │ └── MyCommenApp.java │ │ │ └── module_common │ │ │ ├── activity │ │ │ ├── AlertViewDemoActivity.java │ │ │ ├── CommonMainActivity.java │ │ │ ├── DragBallActivity.java │ │ │ ├── EmptyLayoutActivity.java │ │ │ ├── HeaderListActivity.java │ │ │ ├── HoverItemActivity.java │ │ │ ├── JsonDataActivity.java │ │ │ ├── KProgressHudActivity.java │ │ │ ├── MyAccountActivity.java │ │ │ ├── PickerViewActivity.java │ │ │ ├── PictureSelectorActivity.java │ │ │ ├── PopupWindowActivity.java │ │ │ ├── RatingBarActivity.java │ │ │ ├── TagFlowActivity.java │ │ │ ├── TestViewActivity.java │ │ │ ├── TipDialogActivity.java │ │ │ ├── VideoCompressActivity.java │ │ │ ├── ZxingActivity.java │ │ │ ├── progressa.java │ │ │ └── zxing │ │ │ │ ├── SecondActivity.java │ │ │ │ └── ThreeActivity.java │ │ │ ├── adapter │ │ │ ├── CommonAdapter.java │ │ │ ├── GridImageAdapter.java │ │ │ ├── HoverAdapter.java │ │ │ └── TagFlowAdapter.java │ │ │ ├── bean │ │ │ ├── CardBean.java │ │ │ ├── CommonBean.java │ │ │ ├── HoverItemBean.java │ │ │ ├── JsonBean.java │ │ │ ├── PickerViewData.java │ │ │ ├── ProvinceBean.java │ │ │ └── TagBean.java │ │ │ ├── uiHelper │ │ │ ├── FullyGridLayoutManager.java │ │ │ └── PickerViewUtils.java │ │ │ ├── utils │ │ │ ├── CharacterParser.java │ │ │ ├── CheckPermissionUtils.java │ │ │ ├── ImageUtil.java │ │ │ ├── PinyinComparator.java │ │ │ └── getPathByUri.java │ │ │ └── widget │ │ │ ├── AnimatePieView.java │ │ │ ├── FullSheetDialogFragment.java │ │ │ ├── HeadZoomScrollView.java │ │ │ ├── ImageAlertDialog.java │ │ │ ├── PullScrollView.java │ │ │ ├── SlideSwitch.java │ │ │ ├── StretchScrollView.java │ │ │ └── TestView.java │ ├── module │ │ └── AndroidManifest.xml │ └── res │ │ ├── anim │ │ ├── push_scale_right_in.xml │ │ ├── push_scale_right_out.xml │ │ ├── slile_bottom_in.xml │ │ └── slile_bottom_out.xml │ │ ├── drawable │ │ ├── alert_bg.9.png │ │ ├── ic_enter.xml │ │ ├── icon_message_box.png │ │ ├── otherui_shape_login_btn.xml │ │ ├── qmui_tip_dialog_bg.xml │ │ ├── scan_image.png │ │ ├── shap_ring.xml │ │ ├── spin_animation.xml │ │ ├── tag_checked_bg.xml │ │ └── tag_normal_bg.xml │ │ ├── layout │ │ ├── activity_alertview_demo.xml │ │ ├── activity_common.xml │ │ ├── activity_drag_ball.xml │ │ ├── activity_empty_layout.xml │ │ ├── activity_header_list.xml │ │ ├── activity_hover_item.xml │ │ ├── activity_json_data.xml │ │ ├── activity_kprogress_hud.xml │ │ ├── activity_my_account.xml │ │ ├── activity_picker_view.xml │ │ ├── activity_picture_selector.xml │ │ ├── activity_popup_window.xml │ │ ├── activity_rating_bar.xml │ │ ├── activity_second.xml │ │ ├── activity_tag.xml │ │ ├── activity_test_view.xml │ │ ├── activity_three.xml │ │ ├── activity_tip_dialog.xml │ │ ├── activity_video_compress.xml │ │ ├── activity_zxing.xml │ │ ├── adapter_item_hover_user.xml │ │ ├── alertext_form.xml │ │ ├── dialog_bottom_sheet.xml │ │ ├── gv_filter_image.xml │ │ ├── item_common.xml │ │ ├── item_select_img.xml │ │ ├── layout_select_img.xml │ │ ├── my_camera.xml │ │ ├── otherui_pickerview_custom_time.xml │ │ ├── pickerview_custom_options.xml │ │ ├── pickerview_custom_time.xml │ │ ├── pop_product_detail_video.xml │ │ ├── popup_child_menu.xml │ │ ├── simple_list_item.xml │ │ ├── tag_layout.xml │ │ └── tipdialog_custom.xml │ │ ├── mipmap-xhdpi │ │ ├── addimg_1x.png │ │ ├── delet_zhaopian_1x.png │ │ ├── frame_001.png │ │ ├── frame_002.png │ │ ├── frame_003.png │ │ ├── frame_004.png │ │ ├── frame_005.png │ │ ├── frame_006.png │ │ ├── frame_007.png │ │ ├── frame_008.png │ │ ├── frame_009.png │ │ ├── frame_010.png │ │ ├── frame_011.png │ │ ├── frame_012.png │ │ ├── frame_013.png │ │ ├── frame_014.png │ │ ├── frame_015.png │ │ ├── frame_016.png │ │ ├── frame_017.png │ │ ├── frame_018.png │ │ ├── frame_019.png │ │ ├── frame_020.png │ │ ├── icon_enpty.png │ │ ├── icon_error.png │ │ ├── qmui_icon_notify_done.png │ │ ├── qmui_icon_notify_error.png │ │ ├── qmui_icon_notify_info.png │ │ └── to_down.png │ │ ├── mipmap-xxhdpi │ │ ├── alert_btn_left_pressed.png │ │ ├── alert_btn_right_pressed.png │ │ ├── alert_trans_bg.png │ │ ├── back_img.png │ │ ├── banner.png │ │ ├── chongzhi5.webp │ │ ├── ic_account.png │ │ ├── ic_account_touxiang.png │ │ ├── ic_calendar.png │ │ ├── lol_2.png │ │ ├── manage_icon_del.png │ │ ├── star1.png │ │ ├── star2.png │ │ ├── wx_picture.png │ │ ├── wx_video.png │ │ └── xiangji.webp │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── tome │ └── module_common │ └── ExampleUnitTest.java ├── module_shop_cart ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── tome │ │ └── module_shop_cart │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── tome │ │ │ ├── module │ │ │ └── MyAppCart.java │ │ │ └── module_shop_cart │ │ │ ├── activity │ │ │ ├── LoginActivity.java │ │ │ ├── ProductDetailActivity.java │ │ │ ├── ShopCartActivity.java │ │ │ └── TestActivity.java │ │ │ ├── adapter │ │ │ ├── ProductAttrsListAdapter.java │ │ │ └── ShopCartAdapter.java │ │ │ ├── annotation │ │ │ ├── AnimType.java │ │ │ ├── ClickPosition.java │ │ │ ├── OnKeyType.java │ │ │ └── anim │ │ │ │ └── BaseAnimatorSet.java │ │ │ ├── arouter │ │ │ └── RouterCenter.java │ │ │ ├── base │ │ │ ├── BaseActivity.java │ │ │ ├── BaseData.java │ │ │ ├── BaseDialogFragment.java │ │ │ ├── BaseFragment.java │ │ │ ├── BaseObjs.java │ │ │ ├── CommonActivity.java │ │ │ ├── CommonFragment.java │ │ │ ├── Contract.java │ │ │ ├── INetResult.java │ │ │ └── IUIBase.java │ │ │ ├── bean │ │ │ ├── GetCartInfoBean.java │ │ │ ├── GetProductDetailsBean.java │ │ │ ├── LoginBean.java │ │ │ └── ObjectBeans.java │ │ │ ├── dialog │ │ │ ├── BaseDialog.java │ │ │ ├── InputNumDialog.java │ │ │ ├── OnDialogClickListener.java │ │ │ ├── SelectedProductDialog.java │ │ │ └── TaoBaoDialog.java │ │ │ ├── fragment │ │ │ ├── ProductDetailFirstFrag.java │ │ │ ├── ProductDetailSecondFragment.java │ │ │ ├── ProductEvaluateFragment.java │ │ │ ├── ProductFragment.java │ │ │ ├── ProductIntroFragment.java │ │ │ └── ShopCartFragment.java │ │ │ ├── listener │ │ │ ├── OnDimensionSelectListener.java │ │ │ └── SimpleOnKeyListener.java │ │ │ ├── net │ │ │ ├── IFlag.java │ │ │ ├── JsonCallback.java │ │ │ ├── OKHttpHelper.java │ │ │ ├── ShopDataManager.java │ │ │ └── URLS.java │ │ │ ├── params │ │ │ ├── AddCollectionParams.java │ │ │ ├── AddToCartParams.java │ │ │ ├── DeleteProductParams.java │ │ │ ├── GetProductDetailsParams.java │ │ │ └── LoginParams.java │ │ │ ├── utils │ │ │ ├── BasicTool.java │ │ │ └── DetectTool.java │ │ │ └── widget │ │ │ ├── AutoLoopView.java │ │ │ ├── CustScrollView.java │ │ │ ├── CustomNumInputView.java │ │ │ ├── DragLayout.java │ │ │ ├── EasySwipeMenuLayout.java │ │ │ ├── EditTextWithDel.java │ │ │ ├── LinerDividerItemDecoration.java │ │ │ ├── MyGridView.java │ │ │ ├── MyScrollView.java │ │ │ ├── OnClickHelper.java │ │ │ └── State.java │ ├── module │ │ └── AndroidManifest.xml │ └── res │ │ ├── anim │ │ ├── cart_alex_dialog_anim_bottom2top_in.xml │ │ └── cart_alex_dialog_anim_bottom2top_out.xml │ │ ├── color │ │ ├── cart_maincolor_to_88.xml │ │ └── cart_tab_color.xml │ │ ├── drawable │ │ ├── cart_home_tab_cart.xml │ │ ├── cart_home_tab_shop.xml │ │ ├── cart_layer_home_devider.xml │ │ ├── cart_layer_radiobutton_black_bg.xml │ │ ├── cart_selector_circle_select.xml │ │ ├── cart_selector_maincolor_to_88_btnbg.xml │ │ ├── cart_selector_radiobutton_bg.xml │ │ ├── cart_selector_show_hide_pwd.xml │ │ ├── cart_shape_border_bg.xml │ │ ├── cart_shape_fillet1_maincolor_boder_4dp.xml │ │ ├── cart_shape_fillet2_dd_boder.xml │ │ ├── cart_shape_fillet2_maincolor_boder.xml │ │ ├── cart_shape_fillet_solid.xml │ │ ├── cart_shape_fram1_maincolor_4dp.xml │ │ ├── cart_shape_fram_f8.xml │ │ ├── cart_shape_gradient_dark_btn.xml │ │ └── cart_shape_square_boder.xml │ │ ├── layout │ │ ├── cart_activity_login.xml │ │ ├── cart_activity_product_detail.xml │ │ ├── cart_activity_shop_cart.xml │ │ ├── cart_activity_test.xml │ │ ├── cart_dialog_input_num.xml │ │ ├── cart_dialog_selected_product.xml │ │ ├── cart_fragment_evaluate.xml │ │ ├── cart_fragment_product_detail_frirst.xml │ │ ├── cart_fragment_product_intro.xml │ │ ├── cart_fragment_product_second.xml │ │ ├── cart_item_product_attrs.xml │ │ ├── cart_item_product_tag.xml │ │ ├── cart_item_shopcart.xml │ │ ├── cart_layout_custom_num_input.xml │ │ ├── cart_product_fragment.xml │ │ ├── cart_selected_product_atts.xml │ │ ├── cart_shop_cart_fragment.xml │ │ └── cart_view_auto_poll_image.xml │ │ ├── mipmap-xxhdpi │ │ ├── account_ic_hide_pwd.png │ │ ├── account_ic_show_pwd.png │ │ ├── dian_blue.png │ │ ├── dian_grey.png │ │ ├── ic_register_del.png │ │ ├── ic_shopcart_empty.png │ │ ├── ic_tab_cart_press.png │ │ ├── ic_tab_cart_unpress.png │ │ ├── ic_tab_shop_press.png │ │ ├── ic_tab_shop_unpress.png │ │ ├── ic_title_logo.png │ │ ├── ico_arrow.png │ │ ├── ico_back.png │ │ ├── ico_circle_select_false.png │ │ ├── ico_circle_select_true.png │ │ ├── ico_collection_uncheck.png │ │ ├── ico_next_gray.png │ │ ├── ico_select_left_bg.png │ │ ├── ico_select_right_bg.png │ │ ├── ico_set_top.png │ │ ├── ico_shop_cart_black.png │ │ ├── math_black_number_add.png │ │ ├── math_black_number_sub.png │ │ └── shop_shop_close.png │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── tome │ └── module_shop_cart │ └── ExampleUnitTest.java ├── module_shop_mall ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── tome │ │ └── module_shop_mall │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── tome │ │ │ ├── module │ │ │ └── MyApp.java │ │ │ └── module_shop_mall │ │ │ ├── activity │ │ │ ├── ArticleDetailActivity.java │ │ │ ├── HomeActivity.java │ │ │ ├── KnowledgeDetailActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MvcTestActivity.java │ │ │ ├── MvpNoModelTestActivity.java │ │ │ ├── MvpTestActivity.java │ │ │ └── SplashActivity.java │ │ │ ├── adapter │ │ │ ├── HistorySearchAdapter.java │ │ │ ├── HomeListAdapter.java │ │ │ ├── KnowledgeChildListAdapter.java │ │ │ ├── NavigationAdapter.java │ │ │ ├── OneTypeAdapter.java │ │ │ ├── ProjectListAdapter.java │ │ │ └── TwoTypeAdapter.java │ │ │ ├── api │ │ │ ├── ApiService.java │ │ │ ├── ModelVcService.java │ │ │ └── ModelVpService.java │ │ │ ├── arouter │ │ │ └── RouterCenter.java │ │ │ ├── bean │ │ │ ├── BannerData.java │ │ │ ├── FeedArticleData.java │ │ │ ├── FeedArticleListData.java │ │ │ ├── FeedArticleListResponse.java │ │ │ ├── KnowledgeChildBean.java │ │ │ ├── KnowledgeSystemBean.java │ │ │ ├── LoginBean.java │ │ │ ├── LoginResponse.java │ │ │ ├── NavigationBean.java │ │ │ ├── ProjectClassifyBean.java │ │ │ ├── ProjectListBean.java │ │ │ ├── SearchHistoryBean.java │ │ │ └── TopSearchBean.java │ │ │ ├── contract │ │ │ ├── ArticleDetailContract.java │ │ │ ├── HomeContract.java │ │ │ ├── ILoginsContract.java │ │ │ ├── INavigationV2Contract.java │ │ │ ├── IProjectContract.java │ │ │ ├── KnowledgeChildContract.java │ │ │ ├── KnowledgeSystemContract.java │ │ │ ├── MainContract.java │ │ │ └── NavigationContract.java │ │ │ ├── dao │ │ │ ├── DaoMaster.java │ │ │ ├── DaoSession.java │ │ │ ├── SearchHistoryBeanDao.java │ │ │ └── db │ │ │ │ ├── DbHelper.java │ │ │ │ └── LocalSearchDataHelper.java │ │ │ ├── fagment │ │ │ ├── BaseHomeFragment.java │ │ │ ├── HomeFragment.java │ │ │ ├── KnowledgeChildFragment.java │ │ │ ├── KnowledgeSystemFragment.java │ │ │ ├── NavigationFragment.java │ │ │ ├── NavigationV2Fragment.java │ │ │ ├── ProjectFragment.java │ │ │ ├── ProjectListFragment.java │ │ │ └── SearchDialogFragment.java │ │ │ ├── helper │ │ │ ├── BottomNavigationViewHelper.java │ │ │ └── GlideImageLoader.java │ │ │ ├── model │ │ │ ├── HomeModel.java │ │ │ ├── LoginsModel.java │ │ │ ├── NavigationModel.java │ │ │ ├── NavigationV2Model.java │ │ │ ├── ProjectModel.java │ │ │ └── mainMvpModel.java │ │ │ ├── params │ │ │ ├── LoginParams.java │ │ │ └── TestParams.java │ │ │ ├── presenter │ │ │ ├── ArticleDetailPresenter.java │ │ │ ├── HomePresenter.java │ │ │ ├── KnowledgeChildPresenter.java │ │ │ ├── KnowledgeDetailPresenter.java │ │ │ ├── KnowledgeSystemPresenter.java │ │ │ ├── LoginsPresenter.java │ │ │ ├── MainPresenter.java │ │ │ ├── NavigationPresenter.java │ │ │ ├── NavigationV2Presenter.java │ │ │ └── ProjectPresenter.java │ │ │ ├── view │ │ │ └── LoginsFragment.java │ │ │ └── widget │ │ │ ├── CircularRevealAnim.java │ │ │ ├── MyWebView.java │ │ │ ├── NoScrollViewPager.java │ │ │ └── RotateAnimation.java │ ├── module │ │ └── AndroidManifest.xml │ └── res │ │ ├── drawable-xxhdpi │ │ └── logo.png │ │ ├── drawable │ │ ├── mall_bg_search_shape.xml │ │ ├── mall_home_tab_home.xml │ │ ├── mall_home_tab_knowledge_system.xml │ │ ├── mall_home_tab_navigation.xml │ │ ├── mall_home_tab_self.xml │ │ ├── mall_ic_clear_all.xml │ │ ├── mall_ic_clear_all_gone.xml │ │ ├── mall_ic_search_history.xml │ │ ├── mall_item_selector.xml │ │ ├── mall_nav_bg.xml │ │ ├── mall_nav_item_color_state.xml │ │ ├── mall_progress_webview.xml │ │ ├── mall_search_view_shape.xml │ │ ├── mall_selector_search_item_bac.xml │ │ ├── mall_tag_normal_bg.xml │ │ └── mall_touch_bg.xml │ │ ├── layout │ │ ├── mall_activity_home.xml │ │ ├── mall_activity_home_detail.xml │ │ ├── mall_activity_knowledge_detail.xml │ │ ├── mall_activity_main.xml │ │ ├── mall_activity_mvc_test.xml │ │ ├── mall_activity_mvp_test.xml │ │ ├── mall_activity_splash.xml │ │ ├── mall_flow_layout_tv.xml │ │ ├── mall_fragment_base.xml │ │ ├── mall_fragment_home.xml │ │ ├── mall_fragment_knowledge_system.xml │ │ ├── mall_fragment_navigation.xml │ │ ├── mall_fragment_navigation_v2.xml │ │ ├── mall_fragment_project.xml │ │ ├── mall_fragment_project_list.xml │ │ ├── mall_fragment_search.xml │ │ ├── mall_head_banner.xml │ │ ├── mall_item_home_info.xml │ │ ├── mall_item_knowledge_child.xml │ │ ├── mall_item_knowledge_list.xml │ │ ├── mall_item_knowledge_tv.xml │ │ ├── mall_item_navigation.xml │ │ ├── mall_item_one_type.xml │ │ ├── mall_item_project_list.xml │ │ ├── mall_item_search_history.xml │ │ ├── mall_item_two_type.xml │ │ ├── mall_knowledge_child_fragment.xml │ │ ├── mall_nav_header_home.xml │ │ ├── mall_search_toolbar.xml │ │ ├── mall_tab_layout_tv.xml │ │ └── mall_toolbar.xml │ │ ├── menu │ │ ├── mall_bottom_navigation_home.xml │ │ └── mall_nav_menu.xml │ │ ├── mipmap-xhdpi │ │ ├── icon_about_us.png │ │ ├── icon_author.png │ │ ├── icon_circular_select.png │ │ ├── icon_circular_unselect.png │ │ ├── icon_edit_input_clear.png │ │ ├── icon_like_article_not_selected.png │ │ ├── icon_like_article_selected.png │ │ ├── icon_logout.png │ │ ├── icon_meinv.png │ │ ├── icon_search.png │ │ └── icon_vidio.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_splash.png │ │ ├── ic_tab_home_press.png │ │ ├── ic_tab_home_unpress.png │ │ ├── ic_tab_knowledge_hierarchy_not_selected.png │ │ ├── ic_tab_knowledge_hierarchy_selected.png │ │ ├── ic_tab_navigation_not_selected.png │ │ ├── ic_tab_navigation_selected.png │ │ ├── ic_tab_self_press.png │ │ ├── ic_tab_self_unpress.png │ │ └── logo.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── tome │ └── module_shop_mall │ └── ExampleUnitTest.java ├── module_welfare ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── welfare │ │ └── module_welfare │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── welfare │ │ │ ├── debug │ │ │ └── MyApp.java │ │ │ └── module_welfare │ │ │ ├── activity │ │ │ ├── ImagePreviewActivity.java │ │ │ └── WelfareActivity.java │ │ │ ├── adapter │ │ │ ├── ImagePreviewAdapter.java │ │ │ └── WelfareV1Adapter.java │ │ │ ├── api │ │ │ ├── ApiService.java │ │ │ └── ModelService.java │ │ │ ├── arouter │ │ │ └── RouterCenter.java │ │ │ ├── bean │ │ │ ├── PhotoGirlBean.java │ │ │ └── PreviewBean.java │ │ │ ├── contract │ │ │ ├── SaveImageContract.java │ │ │ └── WelfareContract.java │ │ │ ├── fragment │ │ │ ├── BlankFragment.java │ │ │ ├── WelfareTabFragment.java │ │ │ └── WelfareV1Fragment.java │ │ │ ├── presenter │ │ │ ├── SaveImagePresenter.java │ │ │ └── WelfarePresenter.java │ │ │ └── widget │ │ │ ├── HackyViewPager.java │ │ │ └── NineGridView.java │ ├── module │ │ └── AndroidManifest.xml │ └── res │ │ ├── layout │ │ ├── fragment_blank.xml │ │ ├── welfare_activity_welfare.xml │ │ ├── welfare_image_preview_activity.xml │ │ ├── welfare_item_photoview.xml │ │ ├── welfare_v1_fragment.xml │ │ └── welfare_v1_item.xml │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── example │ └── welfare │ └── module_welfare │ └── ExampleUnitTest.java ├── otherLib ├── alertview │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── bigkoo │ │ │ └── alertview │ │ │ ├── AlertAnimateUtil.java │ │ │ ├── AlertView.java │ │ │ ├── AlertViewAdapter.java │ │ │ ├── OnDismissListener.java │ │ │ └── OnItemClickListener.java │ │ └── res │ │ ├── anim │ │ ├── fade_in_center.xml │ │ ├── fade_out_center.xml │ │ ├── slide_in_bottom.xml │ │ └── slide_out_bottom.xml │ │ ├── drawable │ │ ├── bg_actionsheet_cancel.xml │ │ ├── bg_actionsheet_header.xml │ │ ├── bg_alertbutton_bottom.xml │ │ ├── bg_alertbutton_left.xml │ │ ├── bg_alertbutton_none.xml │ │ ├── bg_alertbutton_right.xml │ │ └── bg_alertview_alert.xml │ │ ├── layout │ │ ├── include_alertheader.xml │ │ ├── item_alertbutton.xml │ │ ├── layout_alertview.xml │ │ ├── layout_alertview_actionsheet.xml │ │ ├── layout_alertview_alert.xml │ │ ├── layout_alertview_alert_horizontal.xml │ │ └── layout_alertview_alert_vertical.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml ├── cockroach-x │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── wanjian │ │ └── cockroach │ │ ├── Cockroach.java │ │ ├── ExceptionHandler.java │ │ └── compat │ │ ├── ActivityKillerV15_V20.java │ │ ├── ActivityKillerV21_V23.java │ │ ├── ActivityKillerV24_V25.java │ │ ├── ActivityKillerV26.java │ │ └── IActivityKiller.java ├── customview │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── customview │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── customview │ │ │ │ └── widget │ │ │ │ ├── DragBallView.java │ │ │ │ ├── HoverItemDecoration.java │ │ │ │ ├── IndexView.java │ │ │ │ ├── RatingBar.java │ │ │ │ ├── RatingBarV2.java │ │ │ │ ├── dialog │ │ │ │ ├── AlertDialog.java │ │ │ │ └── tipDialog │ │ │ │ │ └── TipDialogView.java │ │ │ │ └── popupWindow │ │ │ │ ├── CommonPopupWindow.java │ │ │ │ ├── CustomPopWindow.java │ │ │ │ └── PopupController.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── alert_bg.9.png │ │ │ ├── alert_btn_left_pressed.9.png │ │ │ ├── alert_btn_right_pressed.9.png │ │ │ ├── alert_btn_single_pressed.9.png │ │ │ ├── alertdialog_left_selector.xml │ │ │ ├── alertdialog_right_selector.xml │ │ │ ├── alertdialog_single_selector.xml │ │ │ └── qmui_tip_dialog_bg.xml │ │ │ ├── layout │ │ │ ├── dialog_view_item.xml │ │ │ └── qmui_tip_dialog_layout.xml │ │ │ ├── mipmap-xxhdpi │ │ │ ├── alert_trans_bg.png │ │ │ ├── qmui_icon_notify_done.png │ │ │ ├── qmui_icon_notify_error.png │ │ │ └── qmui_icon_notify_info.png │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── customview │ │ └── ExampleUnitTest.java ├── flowlayout-lib │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── zhy │ │ │ └── flowlayout_lib │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── zhy │ │ │ └── view │ │ │ └── flowlayout │ │ │ ├── FlowLayout.java │ │ │ ├── TagAdapter.java │ │ │ ├── TagFlowLayout.java │ │ │ └── TagView.java │ │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml ├── kprogresshud │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── kaopiz │ │ │ └── kprogresshud │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── kaopiz │ │ │ │ └── kprogresshud │ │ │ │ ├── AnnularView.java │ │ │ │ ├── BackgroundLayout.java │ │ │ │ ├── BarView.java │ │ │ │ ├── Determinate.java │ │ │ │ ├── Helper.java │ │ │ │ ├── Indeterminate.java │ │ │ │ ├── KProgressHUD.java │ │ │ │ ├── PieView.java │ │ │ │ └── SpinView.java │ │ └── res │ │ │ ├── drawable-xhdpi │ │ │ └── kprogresshud_spinner.png │ │ │ ├── drawable-xxhdpi │ │ │ └── kprogresshud_spinner.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── kprogresshud_spinner.png │ │ │ ├── layout │ │ │ └── kprogresshud_hud.xml │ │ │ └── values │ │ │ └── colors.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── kaopiz │ │ └── kprogresshud │ │ └── ExampleUnitTest.java └── videocompressV2 │ ├── .gitignore │ ├── build.gradle │ ├── libs │ └── isoparser-1.0.6.jar │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── yovenny │ │ └── videocompress │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── yovenny │ │ │ └── videocompress │ │ │ ├── CovertUtil.java │ │ │ ├── InputSurface.java │ │ │ ├── MP4Builder.java │ │ │ ├── MediaController.java │ │ │ ├── Mp4Movie.java │ │ │ ├── OutputSurface.java │ │ │ ├── Sample.java │ │ │ ├── TextureRenderer.java │ │ │ └── Track.java │ ├── jni │ │ ├── libyuv │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── LICENSE_THIRD_PARTY │ │ │ ├── PATENTS │ │ │ ├── include │ │ │ │ ├── libyuv.h │ │ │ │ └── libyuv │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── compare.h │ │ │ │ │ ├── compare_row.h │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── convert_argb.h │ │ │ │ │ ├── convert_from.h │ │ │ │ │ ├── convert_from_argb.h │ │ │ │ │ ├── cpu_id.h │ │ │ │ │ ├── mjpeg_decoder.h │ │ │ │ │ ├── planar_functions.h │ │ │ │ │ ├── rotate.h │ │ │ │ │ ├── rotate_argb.h │ │ │ │ │ ├── rotate_row.h │ │ │ │ │ ├── row.h │ │ │ │ │ ├── scale.h │ │ │ │ │ ├── scale_argb.h │ │ │ │ │ ├── scale_row.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── video_common.h │ │ │ └── source │ │ │ │ ├── compare.cc │ │ │ │ ├── compare_common.cc │ │ │ │ ├── compare_gcc.cc │ │ │ │ ├── compare_neon.cc │ │ │ │ ├── compare_neon64.cc │ │ │ │ ├── compare_win.cc │ │ │ │ ├── convert.cc │ │ │ │ ├── convert_argb.cc │ │ │ │ ├── convert_from.cc │ │ │ │ ├── convert_from_argb.cc │ │ │ │ ├── convert_jpeg.cc │ │ │ │ ├── convert_to_argb.cc │ │ │ │ ├── convert_to_i420.cc │ │ │ │ ├── cpu_id.cc │ │ │ │ ├── mjpeg_decoder.cc │ │ │ │ ├── mjpeg_validate.cc │ │ │ │ ├── planar_functions.cc │ │ │ │ ├── rotate.cc │ │ │ │ ├── rotate_any.cc │ │ │ │ ├── rotate_argb.cc │ │ │ │ ├── rotate_common.cc │ │ │ │ ├── rotate_gcc.cc │ │ │ │ ├── rotate_mips.cc │ │ │ │ ├── rotate_neon.cc │ │ │ │ ├── rotate_neon64.cc │ │ │ │ ├── rotate_win.cc │ │ │ │ ├── row_any.cc │ │ │ │ ├── row_common.cc │ │ │ │ ├── row_gcc.cc │ │ │ │ ├── row_mips.cc │ │ │ │ ├── row_neon.cc │ │ │ │ ├── row_neon64.cc │ │ │ │ ├── row_win.cc │ │ │ │ ├── scale.cc │ │ │ │ ├── scale_any.cc │ │ │ │ ├── scale_argb.cc │ │ │ │ ├── scale_common.cc │ │ │ │ ├── scale_gcc.cc │ │ │ │ ├── scale_mips.cc │ │ │ │ ├── scale_neon.cc │ │ │ │ ├── scale_neon64.cc │ │ │ │ ├── scale_win.cc │ │ │ │ └── video_common.cc │ │ ├── utils.c │ │ ├── utils.h │ │ └── video.c │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── yovenny │ └── videocompress │ └── ExampleUnitTest.java ├── projectCore ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── tome │ │ └── projectCore │ │ ├── adapter │ │ ├── CommViewHolder.java │ │ └── CommonAdapter.java │ │ ├── base │ │ ├── mvc │ │ │ ├── BaseEmptyVcFragment.java │ │ │ ├── BaseVcListFragment.java │ │ │ ├── BaseVcPermissionActivity.java │ │ │ ├── BaseVcTabListActivity.java │ │ │ └── BaseVcTabListFragment.java │ │ └── mvp │ │ │ ├── BaseEmptyVpFragment.java │ │ │ ├── BaseVpListFragment.java │ │ │ ├── BaseVpPermissionActivity.java │ │ │ ├── BaseVpTabListActivity.java │ │ │ └── BaseVpTabListFragment.java │ │ ├── bean │ │ ├── BaseObj.java │ │ ├── BaseResponse.java │ │ ├── EventBusBean.java │ │ ├── ObjectBean.java │ │ └── TabListBean.java │ │ ├── constant │ │ ├── CurrentLanguage.java │ │ └── RegexConstants.java │ │ ├── dialog │ │ ├── BaseDialogFragment.java │ │ └── MyAlertDialog.java │ │ ├── helper │ │ ├── GlideRoundTransform.java │ │ ├── ImageLoaderHelper.java │ │ └── LocaleHelper.java │ │ ├── util │ │ └── RegexUtils.java │ │ └── widget │ │ └── emptyViews │ │ ├── EmptyView.java │ │ └── LoadingView.java │ └── res │ ├── drawable │ ├── alert_bg.9.png │ ├── alert_btn_left_pressed.9.png │ ├── alert_btn_right_pressed.9.png │ ├── alert_btn_single_pressed.9.png │ ├── alertdialog_left_selector.xml │ ├── alertdialog_right_selector.xml │ └── alertdialog_single_selector.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/debug/app-debug.apk -------------------------------------------------------------------------------- /app/debug/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/debug/output.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/tome/framedemomo2/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/androidTest/java/com/example/tome/framedemomo2/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/tome/framedemomo2/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/java/com/example/tome/framedemomo2/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/title_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xhdpi/title_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/tome/framedemomo2/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/app/src/test/java/com/example/tome/framedemomo2/ExampleUnitTest.java -------------------------------------------------------------------------------- /baseLib/core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /baseLib/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/build.gradle -------------------------------------------------------------------------------- /baseLib/core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/proguard-rules.pro -------------------------------------------------------------------------------- /baseLib/core/src/androidTest/java/com/example/tome/core/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/androidTest/java/com/example/tome/core/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /baseLib/core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/adapter/BaseFragmentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/adapter/BaseFragmentAdapter.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/adapter/BaseViewPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/adapter/BaseViewPagerAdapter.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/BaseEventbusBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/BaseEventbusBean.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/BaseHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/BaseHost.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/BaseObserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/BaseObserver.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/HostType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/HostType.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvc/BaseVcActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvc/BaseVcActivity.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvc/BaseVcFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvc/BaseVcFragment.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvc/BaseVcListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvc/BaseVcListActivity.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvc/inter/BaseView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvc/inter/BaseView.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/BasePresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/BasePresenter.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/BaseVpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/BaseVpActivity.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/BaseVpFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/BaseVpFragment.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/BaseVpListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/BaseVpListActivity.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/DisposablePool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/DisposablePool.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/ICommentModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/ICommentModel.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IDisposablePool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IDisposablePool.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IModel.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IPresenter.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/IView.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/MvpCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/base/mvp/inter/MvpCallback.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/constants/ActivityControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/constants/ActivityControl.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/constants/BaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/constants/BaseApplication.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/helper/HUDFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/helper/HUDFactory.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/net/HttpHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/net/HttpHelper.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/net/HttpLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/net/HttpLogger.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/net/ServerException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/net/ServerException.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/net/params/RequestMapBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/net/params/RequestMapBuild.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/net/params/RequestMapParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/net/params/RequestMapParams.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/ActivityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/ActivityUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/AppUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/AppUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/Arith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/Arith.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/BarUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/BarUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/CleanUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/CleanUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/CloseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/CloseUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/ConvertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/ConvertUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/DeviceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/DeviceUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/EncodeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/EncodeUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/FileUploadUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/FileUploadUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/FileUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/FragmentUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/FragmentUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/GlideCacheUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/GlideCacheUtil.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/ImageUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/IntentUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/IntentUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/JsonUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/JsonUtil.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/KeyboardUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/KeyboardUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/L.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/L.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/LogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/LogUtil.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/Md5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/Md5.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/NetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/NetUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/ObjectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/ObjectUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/OtherUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/OtherUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/PhoneUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/PhoneUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/PictureCompressionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/PictureCompressionUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/RxUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/RxUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/SPUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/SPUtil.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/ShellUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/ShellUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/SnackbarUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/SnackbarUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/SpannableStringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/SpannableStringUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/StatuBarCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/StatuBarCompat.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/StringUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/TimeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/TimeUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/util/ToastUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/util/ToastUtils.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/CircularImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/CircularImageView.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/FlowLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/FlowLayout.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/MyRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/MyRecyclerView.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/ResHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/ResHelper.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/ViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/ViewHelper.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/roundWidget/AlphaButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/roundWidget/AlphaButton.java -------------------------------------------------------------------------------- /baseLib/core/src/main/java/com/example/tome/core/widget/roundWidget/RoundButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/java/com/example/tome/core/widget/roundWidget/RoundButton.java -------------------------------------------------------------------------------- /baseLib/core/src/main/res/anim/actionsheet_dialog_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/anim/actionsheet_dialog_in.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/anim/actionsheet_dialog_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/anim/actionsheet_dialog_out.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/anim/otherui_bottom_dialog_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/anim/otherui_bottom_dialog_enter.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/anim/otherui_bottom_dialog_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/anim/otherui_bottom_dialog_exit.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/color/otherui_selector_text_color_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/color/otherui_selector_text_color_tab.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/color/qmui_btn_blue_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/color/qmui_btn_blue_border.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/color/qmui_btn_blue_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/color/qmui_btn_blue_text.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/color/qmui_s_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/color/qmui_s_transparent.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/color/s_btn_blue_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/color/s_btn_blue_border.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/circle_bead.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/circle_bead.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/circle_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/circle_shape.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/empty_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/empty_button_selector.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/ic_arrow_back_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/ic_arrow_back_white_24dp.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/ic_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/ic_time.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/icon_like.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/icon_like.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/icon_like_article_not_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/icon_like_article_not_selected.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/otherui_bg_alertbutton_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/otherui_bg_alertbutton_bottom.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/otherui_bg_alertbutton_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/otherui_bg_alertbutton_left.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/otherui_bg_alertbutton_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/otherui_bg_alertbutton_right.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/otherui_shape_bg_toast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/otherui_shape_bg_toast.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/selector_search_item_bac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/selector_search_item_bac.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/selector_tag_red_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/selector_tag_red_background.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shap_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shap_line.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shap_ring_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shap_ring_gray.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shape_home_search_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shape_home_search_bg.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shape_main_color_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shape_main_color_circle.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shape_tag_green_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shape_tag_green_background.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shape_tag_red_background_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shape_tag_red_background_normal.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shape_tag_red_background_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shape_tag_red_background_press.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/shape_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/shape_view.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/spin_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/spin_animation.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/drawable/trans_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/drawable/trans_bg.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/base_empty_view_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/base_empty_view_fragment.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/common_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/common_toolbar.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/fragment_tab_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/fragment_tab_list.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/layout_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/layout_empty.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/layout_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/layout_error.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/layout_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/layout_loading.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/otherui_activity_toast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/otherui_activity_toast.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/otherui_item_area.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/otherui_item_area.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/otherui_layout_alertview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/otherui_layout_alertview.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/qmui_empty_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/qmui_empty_view.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/title_bar_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/title_bar_content.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/title_search_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/title_search_layout.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/layout/view_alertdialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/layout/view_alertdialog.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_001.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_002.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_003.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_004.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_005.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_006.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_007.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_008.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_009.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_010.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_011.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_012.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_013.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_014.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_015.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_016.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_017.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_018.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_019.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/frame_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/frame_020.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/ic_empty_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/ic_empty_picture.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/ic_image_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/ic_image_loading.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/icon_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/icon_empty.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xhdpi/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xhdpi/icon_error.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/back_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/back_img.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/error404.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/error404.webp -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/ic_home_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/ic_home_types.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/ic_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/ic_language.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/ic_search.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/ic_tab_cart_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/ic_tab_cart_unpress.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/mipmap-xxhdpi/otherui_ico_select_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/mipmap-xxhdpi/otherui_ico_select_true.png -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1184x720/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1184x720/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1184x720/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1184x720/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1280x720/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1280x720/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1280x720/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1280x720/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1334x750/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1334x750/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1334x750/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1334x750/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1776x1080/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1776x1080/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1776x1080/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1776x1080/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1794x1080/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1794x1080/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1794x1080/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1794x1080/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1812x1080/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1812x1080/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1812x1080/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1812x1080/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1920x1080/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1920x1080/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-1920x1080/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-1920x1080/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-2560x1440/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-2560x1440/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-2560x1440/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-2560x1440/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-800x480/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-800x480/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-800x480/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-800x480/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-854x480/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-854x480/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-854x480/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-854x480/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-960x540/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-960x540/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values-960x540/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values-960x540/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/lay_x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/lay_x.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/lay_y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/lay_y.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /baseLib/core/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /baseLib/core/src/test/java/com/example/tome/core/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/core/src/test/java/com/example/tome/core/ExampleUnitTest.java -------------------------------------------------------------------------------- /baseLib/router/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /baseLib/router/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/build.gradle -------------------------------------------------------------------------------- /baseLib/router/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/proguard-rules.pro -------------------------------------------------------------------------------- /baseLib/router/src/androidTest/java/com/fec/core/router/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/androidTest/java/com/fec/core/router/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /baseLib/router/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /baseLib/router/src/main/java/com/fec/core/router/arouter/IntentKV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/main/java/com/fec/core/router/arouter/IntentKV.java -------------------------------------------------------------------------------- /baseLib/router/src/main/java/com/fec/core/router/arouter/RouterCenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/main/java/com/fec/core/router/arouter/RouterCenter.java -------------------------------------------------------------------------------- /baseLib/router/src/main/java/com/fec/core/router/arouter/RouterConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/main/java/com/fec/core/router/arouter/RouterConfig.java -------------------------------------------------------------------------------- /baseLib/router/src/main/java/com/fec/core/router/arouter/RouterURLS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/main/java/com/fec/core/router/arouter/RouterURLS.java -------------------------------------------------------------------------------- /baseLib/router/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /baseLib/router/src/test/java/com/fec/core/router/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/baseLib/router/src/test/java/com/fec/core/router/ExampleUnitTest.java -------------------------------------------------------------------------------- /config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/config.gradle -------------------------------------------------------------------------------- /frameKey.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/frameKey.jks -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/gradlew.bat -------------------------------------------------------------------------------- /module_common_ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /module_common_ui/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/build.gradle -------------------------------------------------------------------------------- /module_common_ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/proguard-rules.pro -------------------------------------------------------------------------------- /module_common_ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/assets/customControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/assets/customControl.json -------------------------------------------------------------------------------- /module_common_ui/src/main/assets/province.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/assets/province.json -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module/MyCommenApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module/MyCommenApp.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/bean/CardBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/bean/CardBean.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/bean/CommonBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/bean/CommonBean.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/bean/JsonBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/bean/JsonBean.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/bean/ProvinceBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/bean/ProvinceBean.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/bean/TagBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/bean/TagBean.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/utils/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/utils/ImageUtil.java -------------------------------------------------------------------------------- /module_common_ui/src/main/java/com/example/tome/module_common/widget/TestView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/java/com/example/tome/module_common/widget/TestView.java -------------------------------------------------------------------------------- /module_common_ui/src/main/module/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/module/AndroidManifest.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/anim/push_scale_right_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/anim/push_scale_right_in.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/anim/push_scale_right_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/anim/push_scale_right_out.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/anim/slile_bottom_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/anim/slile_bottom_in.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/anim/slile_bottom_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/anim/slile_bottom_out.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/alert_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/alert_bg.9.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/ic_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/ic_enter.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/icon_message_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/icon_message_box.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/otherui_shape_login_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/otherui_shape_login_btn.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/qmui_tip_dialog_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/qmui_tip_dialog_bg.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/scan_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/scan_image.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/shap_ring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/shap_ring.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/spin_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/spin_animation.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/tag_checked_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/tag_checked_bg.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/drawable/tag_normal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/drawable/tag_normal_bg.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_alertview_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_alertview_demo.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_common.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_drag_ball.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_drag_ball.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_empty_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_empty_layout.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_header_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_header_list.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_hover_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_hover_item.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_json_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_json_data.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_kprogress_hud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_kprogress_hud.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_my_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_my_account.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_picker_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_picker_view.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_picture_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_picture_selector.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_popup_window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_popup_window.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_rating_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_rating_bar.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_second.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_tag.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_test_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_test_view.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_three.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_three.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_tip_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_tip_dialog.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_video_compress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_video_compress.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/activity_zxing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/activity_zxing.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/adapter_item_hover_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/adapter_item_hover_user.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/alertext_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/alertext_form.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/dialog_bottom_sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/dialog_bottom_sheet.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/gv_filter_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/gv_filter_image.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/item_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/item_common.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/item_select_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/item_select_img.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/layout_select_img.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/layout_select_img.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/my_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/my_camera.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/otherui_pickerview_custom_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/otherui_pickerview_custom_time.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/pickerview_custom_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/pickerview_custom_options.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/pickerview_custom_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/pickerview_custom_time.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/pop_product_detail_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/pop_product_detail_video.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/popup_child_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/popup_child_menu.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/simple_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/simple_list_item.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/tag_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/tag_layout.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/layout/tipdialog_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/layout/tipdialog_custom.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/addimg_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/addimg_1x.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/delet_zhaopian_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/delet_zhaopian_1x.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_001.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_002.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_003.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_004.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_005.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_006.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_007.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_008.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_009.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_010.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_011.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_012.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_013.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_014.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_015.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_016.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_017.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_018.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_019.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/frame_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/frame_020.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/icon_enpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/icon_enpty.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/icon_error.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/qmui_icon_notify_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/qmui_icon_notify_done.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/qmui_icon_notify_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/qmui_icon_notify_error.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/qmui_icon_notify_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/qmui_icon_notify_info.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xhdpi/to_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xhdpi/to_down.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/alert_btn_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/alert_btn_left_pressed.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/alert_btn_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/alert_btn_right_pressed.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/alert_trans_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/alert_trans_bg.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/back_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/back_img.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/banner.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/chongzhi5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/chongzhi5.webp -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/ic_account.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/ic_account_touxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/ic_account_touxiang.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/ic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/ic_calendar.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/lol_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/lol_2.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/manage_icon_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/manage_icon_del.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/star1.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/star2.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/wx_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/wx_picture.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/wx_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/wx_video.png -------------------------------------------------------------------------------- /module_common_ui/src/main/res/mipmap-xxhdpi/xiangji.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/mipmap-xxhdpi/xiangji.webp -------------------------------------------------------------------------------- /module_common_ui/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /module_common_ui/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /module_common_ui/src/test/java/com/example/tome/module_common/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_common_ui/src/test/java/com/example/tome/module_common/ExampleUnitTest.java -------------------------------------------------------------------------------- /module_shop_cart/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /module_shop_cart/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/build.gradle -------------------------------------------------------------------------------- /module_shop_cart/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/proguard-rules.pro -------------------------------------------------------------------------------- /module_shop_cart/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/java/com/example/tome/module/MyAppCart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/java/com/example/tome/module/MyAppCart.java -------------------------------------------------------------------------------- /module_shop_cart/src/main/java/com/example/tome/module_shop_cart/base/BaseData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/java/com/example/tome/module_shop_cart/base/BaseData.java -------------------------------------------------------------------------------- /module_shop_cart/src/main/java/com/example/tome/module_shop_cart/net/IFlag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/java/com/example/tome/module_shop_cart/net/IFlag.java -------------------------------------------------------------------------------- /module_shop_cart/src/main/java/com/example/tome/module_shop_cart/net/URLS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/java/com/example/tome/module_shop_cart/net/URLS.java -------------------------------------------------------------------------------- /module_shop_cart/src/main/module/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/module/AndroidManifest.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/anim/cart_alex_dialog_anim_bottom2top_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/anim/cart_alex_dialog_anim_bottom2top_in.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/anim/cart_alex_dialog_anim_bottom2top_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/anim/cart_alex_dialog_anim_bottom2top_out.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/color/cart_maincolor_to_88.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/color/cart_maincolor_to_88.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/color/cart_tab_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/color/cart_tab_color.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_home_tab_cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_home_tab_cart.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_home_tab_shop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_home_tab_shop.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_layer_home_devider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_layer_home_devider.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_layer_radiobutton_black_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_layer_radiobutton_black_bg.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_selector_circle_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_selector_circle_select.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_selector_maincolor_to_88_btnbg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_selector_maincolor_to_88_btnbg.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_selector_radiobutton_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_selector_radiobutton_bg.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_selector_show_hide_pwd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_selector_show_hide_pwd.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_border_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_border_bg.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_fillet1_maincolor_boder_4dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_fillet1_maincolor_boder_4dp.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_fillet2_dd_boder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_fillet2_dd_boder.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_fillet2_maincolor_boder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_fillet2_maincolor_boder.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_fillet_solid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_fillet_solid.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_fram1_maincolor_4dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_fram1_maincolor_4dp.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_fram_f8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_fram_f8.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_gradient_dark_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_gradient_dark_btn.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/drawable/cart_shape_square_boder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/drawable/cart_shape_square_boder.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_activity_login.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_activity_product_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_activity_product_detail.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_activity_shop_cart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_activity_shop_cart.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_activity_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_activity_test.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_dialog_input_num.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_dialog_input_num.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_dialog_selected_product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_dialog_selected_product.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_fragment_evaluate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_fragment_evaluate.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_fragment_product_detail_frirst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_fragment_product_detail_frirst.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_fragment_product_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_fragment_product_intro.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_fragment_product_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_fragment_product_second.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_item_product_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_item_product_attrs.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_item_product_tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_item_product_tag.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_item_shopcart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_item_shopcart.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_layout_custom_num_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_layout_custom_num_input.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_product_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_product_fragment.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_selected_product_atts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_selected_product_atts.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_shop_cart_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_shop_cart_fragment.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/layout/cart_view_auto_poll_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/layout/cart_view_auto_poll_image.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/account_ic_hide_pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/account_ic_hide_pwd.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/account_ic_show_pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/account_ic_show_pwd.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/dian_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/dian_blue.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/dian_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/dian_grey.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_register_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_register_del.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_shopcart_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_shopcart_empty.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_cart_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_cart_press.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_cart_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_cart_unpress.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_shop_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_shop_press.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_shop_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_tab_shop_unpress.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ic_title_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ic_title_logo.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_arrow.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_back.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_circle_select_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_circle_select_false.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_circle_select_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_circle_select_true.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_collection_uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_collection_uncheck.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_next_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_next_gray.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_select_left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_select_left_bg.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_select_right_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_select_right_bg.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_set_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_set_top.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/ico_shop_cart_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/ico_shop_cart_black.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/math_black_number_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/math_black_number_add.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/math_black_number_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/math_black_number_sub.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/mipmap-xxhdpi/shop_shop_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/mipmap-xxhdpi/shop_shop_close.png -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /module_shop_cart/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_cart/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /module_shop_mall/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /module_shop_mall/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/build.gradle -------------------------------------------------------------------------------- /module_shop_mall/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/proguard-rules.pro -------------------------------------------------------------------------------- /module_shop_mall/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/java/com/example/tome/module/MyApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/java/com/example/tome/module/MyApp.java -------------------------------------------------------------------------------- /module_shop_mall/src/main/module/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/module/AndroidManifest.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_bg_search_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_bg_search_shape.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_home_tab_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_home_tab_home.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_home_tab_knowledge_system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_home_tab_knowledge_system.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_home_tab_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_home_tab_navigation.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_home_tab_self.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_home_tab_self.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_ic_clear_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_ic_clear_all.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_ic_clear_all_gone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_ic_clear_all_gone.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_ic_search_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_ic_search_history.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_item_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_item_selector.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_nav_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_nav_bg.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_nav_item_color_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_nav_item_color_state.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_progress_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_progress_webview.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_search_view_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_search_view_shape.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_selector_search_item_bac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_selector_search_item_bac.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_tag_normal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_tag_normal_bg.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/drawable/mall_touch_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/drawable/mall_touch_bg.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_home.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_home_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_home_detail.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_knowledge_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_knowledge_detail.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_main.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_mvc_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_mvc_test.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_mvp_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_mvp_test.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_activity_splash.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_flow_layout_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_flow_layout_tv.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_base.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_home.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_knowledge_system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_knowledge_system.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_navigation.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_navigation_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_navigation_v2.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_project.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_project_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_project_list.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_fragment_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_fragment_search.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_head_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_head_banner.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_home_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_home_info.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_knowledge_child.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_knowledge_child.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_knowledge_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_knowledge_list.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_knowledge_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_knowledge_tv.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_navigation.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_one_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_one_type.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_project_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_project_list.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_search_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_search_history.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_item_two_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_item_two_type.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_knowledge_child_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_knowledge_child_fragment.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_nav_header_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_nav_header_home.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_search_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_search_toolbar.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_tab_layout_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_tab_layout_tv.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/layout/mall_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/layout/mall_toolbar.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/menu/mall_bottom_navigation_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/menu/mall_bottom_navigation_home.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/menu/mall_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/menu/mall_nav_menu.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_about_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_about_us.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_author.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_circular_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_circular_select.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_circular_unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_circular_unselect.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_edit_input_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_edit_input_clear.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_like_article_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_like_article_not_selected.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_like_article_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_like_article_selected.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_logout.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_meinv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_meinv.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_search.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xhdpi/icon_vidio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xhdpi/icon_vidio.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_splash.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_home_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_home_press.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_home_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_home_unpress.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_navigation_not_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_navigation_not_selected.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_navigation_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_navigation_selected.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_self_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_self_press.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_self_unpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/ic_tab_self_unpress.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /module_shop_mall/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_shop_mall/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /module_welfare/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /module_welfare/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/build.gradle -------------------------------------------------------------------------------- /module_welfare/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/proguard-rules.pro -------------------------------------------------------------------------------- /module_welfare/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /module_welfare/src/main/java/com/example/welfare/debug/MyApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/java/com/example/welfare/debug/MyApp.java -------------------------------------------------------------------------------- /module_welfare/src/main/module/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/module/AndroidManifest.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/layout/fragment_blank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/layout/fragment_blank.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/layout/welfare_activity_welfare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/layout/welfare_activity_welfare.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/layout/welfare_image_preview_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/layout/welfare_image_preview_activity.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/layout/welfare_item_photoview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/layout/welfare_item_photoview.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/layout/welfare_v1_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/layout/welfare_v1_fragment.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/layout/welfare_v1_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/layout/welfare_v1_item.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /module_welfare/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /module_welfare/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/module_welfare/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /otherLib/alertview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherLib/alertview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/build.gradle -------------------------------------------------------------------------------- /otherLib/alertview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/proguard-rules.pro -------------------------------------------------------------------------------- /otherLib/alertview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/java/com/bigkoo/alertview/AlertAnimateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/java/com/bigkoo/alertview/AlertAnimateUtil.java -------------------------------------------------------------------------------- /otherLib/alertview/src/main/java/com/bigkoo/alertview/AlertView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/java/com/bigkoo/alertview/AlertView.java -------------------------------------------------------------------------------- /otherLib/alertview/src/main/java/com/bigkoo/alertview/AlertViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/java/com/bigkoo/alertview/AlertViewAdapter.java -------------------------------------------------------------------------------- /otherLib/alertview/src/main/java/com/bigkoo/alertview/OnDismissListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/java/com/bigkoo/alertview/OnDismissListener.java -------------------------------------------------------------------------------- /otherLib/alertview/src/main/java/com/bigkoo/alertview/OnItemClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/java/com/bigkoo/alertview/OnItemClickListener.java -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/anim/fade_in_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/anim/fade_in_center.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/anim/fade_out_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/anim/fade_out_center.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/anim/slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/anim/slide_in_bottom.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/anim/slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/anim/slide_out_bottom.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_actionsheet_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_actionsheet_cancel.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_actionsheet_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_actionsheet_header.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_alertbutton_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_alertbutton_bottom.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_alertbutton_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_alertbutton_left.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_alertbutton_none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_alertbutton_none.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_alertbutton_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_alertbutton_right.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/drawable/bg_alertview_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/drawable/bg_alertview_alert.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/include_alertheader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/include_alertheader.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/item_alertbutton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/item_alertbutton.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/layout_alertview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/layout_alertview.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/layout_alertview_actionsheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/layout_alertview_actionsheet.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/layout_alertview_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/layout_alertview_alert.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/layout_alertview_alert_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/layout_alertview_alert_horizontal.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/layout/layout_alertview_alert_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/layout/layout_alertview_alert_vertical.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /otherLib/alertview/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/alertview/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /otherLib/cockroach-x/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherLib/cockroach-x/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/cockroach-x/build.gradle -------------------------------------------------------------------------------- /otherLib/cockroach-x/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/cockroach-x/proguard-rules.pro -------------------------------------------------------------------------------- /otherLib/cockroach-x/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/cockroach-x/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /otherLib/cockroach-x/src/main/java/com/wanjian/cockroach/Cockroach.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/cockroach-x/src/main/java/com/wanjian/cockroach/Cockroach.java -------------------------------------------------------------------------------- /otherLib/cockroach-x/src/main/java/com/wanjian/cockroach/ExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/cockroach-x/src/main/java/com/wanjian/cockroach/ExceptionHandler.java -------------------------------------------------------------------------------- /otherLib/customview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherLib/customview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/build.gradle -------------------------------------------------------------------------------- /otherLib/customview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/proguard-rules.pro -------------------------------------------------------------------------------- /otherLib/customview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/java/com/example/customview/widget/DragBallView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/java/com/example/customview/widget/DragBallView.java -------------------------------------------------------------------------------- /otherLib/customview/src/main/java/com/example/customview/widget/IndexView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/java/com/example/customview/widget/IndexView.java -------------------------------------------------------------------------------- /otherLib/customview/src/main/java/com/example/customview/widget/RatingBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/java/com/example/customview/widget/RatingBar.java -------------------------------------------------------------------------------- /otherLib/customview/src/main/java/com/example/customview/widget/RatingBarV2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/java/com/example/customview/widget/RatingBarV2.java -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alert_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alert_bg.9.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alert_btn_left_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alert_btn_left_pressed.9.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alert_btn_right_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alert_btn_right_pressed.9.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alert_btn_single_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alert_btn_single_pressed.9.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alertdialog_left_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alertdialog_left_selector.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alertdialog_right_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alertdialog_right_selector.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/alertdialog_single_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/alertdialog_single_selector.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/drawable/qmui_tip_dialog_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/drawable/qmui_tip_dialog_bg.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/layout/dialog_view_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/layout/dialog_view_item.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/layout/qmui_tip_dialog_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/layout/qmui_tip_dialog_layout.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/mipmap-xxhdpi/alert_trans_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/mipmap-xxhdpi/alert_trans_bg.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/mipmap-xxhdpi/qmui_icon_notify_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/mipmap-xxhdpi/qmui_icon_notify_done.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/mipmap-xxhdpi/qmui_icon_notify_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/mipmap-xxhdpi/qmui_icon_notify_error.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/mipmap-xxhdpi/qmui_icon_notify_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/mipmap-xxhdpi/qmui_icon_notify_info.png -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /otherLib/customview/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /otherLib/customview/src/test/java/com/example/customview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/customview/src/test/java/com/example/customview/ExampleUnitTest.java -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/build.gradle -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/proguard-rules.pro -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/FlowLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/FlowLayout.java -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/TagAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/TagAdapter.java -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/TagFlowLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/TagFlowLayout.java -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/TagView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/java/com/zhy/view/flowlayout/TagView.java -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /otherLib/flowlayout-lib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/flowlayout-lib/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /otherLib/kprogresshud/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherLib/kprogresshud/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/build.gradle -------------------------------------------------------------------------------- /otherLib/kprogresshud/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/proguard-rules.pro -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/AnnularView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/AnnularView.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/BackgroundLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/BackgroundLayout.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/BarView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/BarView.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/Determinate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/Determinate.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/Helper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/Helper.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/Indeterminate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/Indeterminate.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/KProgressHUD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/KProgressHUD.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/PieView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/PieView.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/SpinView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/java/com/kaopiz/kprogresshud/SpinView.java -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/res/drawable-xhdpi/kprogresshud_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/res/drawable-xhdpi/kprogresshud_spinner.png -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/res/drawable-xxhdpi/kprogresshud_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/res/drawable-xxhdpi/kprogresshud_spinner.png -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/res/drawable-xxxhdpi/kprogresshud_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/res/drawable-xxxhdpi/kprogresshud_spinner.png -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/res/layout/kprogresshud_hud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/res/layout/kprogresshud_hud.xml -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /otherLib/kprogresshud/src/test/java/com/kaopiz/kprogresshud/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/kprogresshud/src/test/java/com/kaopiz/kprogresshud/ExampleUnitTest.java -------------------------------------------------------------------------------- /otherLib/videocompressV2/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherLib/videocompressV2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/build.gradle -------------------------------------------------------------------------------- /otherLib/videocompressV2/libs/isoparser-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/libs/isoparser-1.0.6.jar -------------------------------------------------------------------------------- /otherLib/videocompressV2/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/proguard-rules.pro -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/CovertUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/CovertUtil.java -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/MP4Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/MP4Builder.java -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/Mp4Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/Mp4Movie.java -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/Sample.java -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/Track.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/java/com/yovenny/videocompress/Track.java -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/AUTHORS -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/LICENSE -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/LICENSE_THIRD_PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/LICENSE_THIRD_PARTY -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/PATENTS -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/basic_types.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/compare.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/compare_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/compare_row.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert_argb.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert_from.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert_from.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert_from_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/convert_from_argb.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/cpu_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/cpu_id.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/mjpeg_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/mjpeg_decoder.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/planar_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/planar_functions.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/rotate.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/rotate_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/rotate_argb.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/rotate_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/rotate_row.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/row.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/scale.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/scale_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/scale_argb.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/scale_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/scale_row.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/version.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/include/libyuv/video_common.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/compare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/compare.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/compare_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/compare_common.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/compare_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/compare_gcc.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/compare_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/compare_neon.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/compare_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/compare_neon64.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/compare_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/compare_win.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert_argb.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert_from.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert_from.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert_from_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert_from_argb.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert_jpeg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert_jpeg.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert_to_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert_to_argb.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/convert_to_i420.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/convert_to_i420.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/cpu_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/cpu_id.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/mjpeg_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/mjpeg_decoder.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/mjpeg_validate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/mjpeg_validate.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/planar_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/planar_functions.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_any.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_argb.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_common.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_gcc.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_mips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_mips.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_neon.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_neon64.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/rotate_win.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_any.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_common.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_gcc.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_mips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_mips.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_neon.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_neon64.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/row_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/row_win.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_any.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_argb.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_common.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_gcc.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_mips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_mips.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_neon.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_neon64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_neon64.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/scale_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/scale_win.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/libyuv/source/video_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/libyuv/source/video_common.cc -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/utils.c -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/utils.h -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/jni/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/jni/video.c -------------------------------------------------------------------------------- /otherLib/videocompressV2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/otherLib/videocompressV2/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /projectCore/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /projectCore/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/build.gradle -------------------------------------------------------------------------------- /projectCore/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/proguard-rules.pro -------------------------------------------------------------------------------- /projectCore/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/adapter/CommonAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/adapter/CommonAdapter.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/bean/BaseObj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/bean/BaseObj.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/bean/BaseResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/bean/BaseResponse.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/bean/EventBusBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/bean/EventBusBean.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/bean/ObjectBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/bean/ObjectBean.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/bean/TabListBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/bean/TabListBean.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/dialog/MyAlertDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/dialog/MyAlertDialog.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/helper/LocaleHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/helper/LocaleHelper.java -------------------------------------------------------------------------------- /projectCore/src/main/java/com/example/tome/projectCore/util/RegexUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/java/com/example/tome/projectCore/util/RegexUtils.java -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alert_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alert_bg.9.png -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alert_btn_left_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alert_btn_left_pressed.9.png -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alert_btn_right_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alert_btn_right_pressed.9.png -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alert_btn_single_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alert_btn_single_pressed.9.png -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alertdialog_left_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alertdialog_left_selector.xml -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alertdialog_right_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alertdialog_right_selector.xml -------------------------------------------------------------------------------- /projectCore/src/main/res/drawable/alertdialog_single_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/drawable/alertdialog_single_selector.xml -------------------------------------------------------------------------------- /projectCore/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /projectCore/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /projectCore/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /projectCore/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/projectCore/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tome34/frameDemoMo2/HEAD/settings.gradle --------------------------------------------------------------------------------