├── .gitignore ├── APP └── 捡喽.apk ├── LICENSE ├── README.md ├── houtai ├── jianlou │ ├── ChineseAnalyzer.py │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── search_indexes.py │ ├── templates │ │ ├── jianlou │ │ │ ├── base.html │ │ │ ├── detail.html │ │ │ └── index.html │ │ └── search │ │ │ ├── indexes │ │ │ └── jianlou │ │ │ │ └── Goods_text.txt │ │ │ └── search.html │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── whoosh_cn_backend.py ├── jianlou_test │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ ├── whoosh_index │ │ ├── MAIN_WRITELOCK │ │ ├── MAIN_oggvg676uwr1xo8t.seg │ │ ├── MAIN_q3pmmtz311j3zrd3.seg │ │ └── _MAIN_2.toc │ └── wsgi.py └── manage.py ├── image ├── chat.jpg ├── classfiy.jpg ├── edit_name.jpg ├── friend.jpg ├── icon.png ├── index.jpg ├── login.jpg ├── message.jpg ├── my.jpg ├── publish.jpg ├── publish_good.jpg ├── search.jpg ├── search_result.jpg ├── setting.png ├── setting_person.png ├── shequ.jpg └── start.jpg ├── main ├── AndroidManifest.xml ├── assets │ ├── category.json │ └── litepal.xml ├── java │ └── com │ │ └── example │ │ └── jianlou │ │ ├── Activity │ │ ├── MainActivity.java │ │ └── StartUP.java │ │ ├── Internet │ │ └── HttpUtil.java │ │ ├── Login │ │ ├── Login.java │ │ └── Register.java │ │ ├── index │ │ ├── EndlessRecyclerOnScrollListener.java │ │ ├── Good.java │ │ ├── GoodAdapter.java │ │ ├── Photo.java │ │ ├── PhotoAdapter.java │ │ ├── ShouYeFragment.java │ │ ├── classfiy │ │ │ ├── CategoryBean.java │ │ │ ├── GridViewForScrollView.java │ │ │ ├── HomeAdapter.java │ │ │ ├── HomeItemAdapter.java │ │ │ ├── MenuAdapter.java │ │ │ └── classify.java │ │ ├── good_detail.java │ │ ├── index_search.java │ │ └── search.java │ │ ├── message │ │ ├── ChatMessage.java │ │ ├── MSgAdapter.java │ │ ├── Message.java │ │ ├── MessageAdapter.java │ │ ├── Msg.java │ │ ├── XiaoXiFragment.java │ │ ├── chat.java │ │ └── message_friend.java │ │ ├── my │ │ ├── CircleTransform.java │ │ ├── EditName.java │ │ ├── Publish.java │ │ ├── PublishAdapter.java │ │ ├── RoundTransform.java │ │ ├── Setting.java │ │ ├── SettingPerson.java │ │ ├── WoDeFragment.java │ │ └── myPublish.java │ │ ├── publish │ │ ├── publish │ │ │ ├── FastBlur.java │ │ │ ├── KickBackAnimator.java │ │ │ └── Publish.java │ │ └── publishGood │ │ │ ├── FullyGridLayoutManager.java │ │ │ ├── GridImageAdapter.java │ │ │ ├── PublishGoodActivity.java │ │ │ ├── PublishGoodClassification.java │ │ │ └── PublishGoodMoney.java │ │ ├── shequ │ │ ├── Post.java │ │ ├── PostAdapter.java │ │ └── SheQuFragment.java │ │ ├── staticVar │ │ ├── StaticVar.java │ │ └── Table.java │ │ └── view │ │ └── MyScrollView.java └── res │ ├── drawable-v21 │ ├── ic_menu_camera.xml │ ├── ic_menu_gallery.xml │ ├── ic_menu_manage.xml │ ├── ic_menu_send.xml │ ├── ic_menu_share.xml │ └── ic_menu_slideshow.xml │ ├── drawable │ ├── bg_btn_login_selected.xml │ ├── bg_select_default.xml │ ├── bg_select_pressed.xml │ ├── bt_tag_bg.xml │ ├── btn_search_bg.xml │ ├── checkbox_num_selector.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── iv_delete_bg.xml │ ├── lv_search_tips_bg.xml │ ├── message_friend_divider_inset.xml │ ├── message_friend_shape_line.xml │ ├── num_oval_blue.xml │ ├── num_oval_blue_def.xml │ ├── progressbar_refresh.xml │ ├── search_edittext_shape.xml │ ├── search_sort_select.xml │ ├── select_selector.xml │ ├── send_shape.xml │ ├── shape.xml │ ├── shequ_publsh_shape.xml │ ├── shequuser.xml │ ├── side_nav_bar.xml │ ├── toolbar_dropshadow.xml │ ├── txt_select_selector.xml │ ├── x_nav_menu_color.xml │ ├── x_nav_menu_sq.xml │ ├── x_nav_menu_sy.xml │ ├── x_nav_menu_wd.xml │ └── x_nav_menu_xx.xml │ ├── layout │ ├── activity_chat.xml │ ├── activity_classfiy.xml │ ├── activity_edit_name.xml │ ├── activity_good_detail.xml │ ├── activity_index_search.xml │ ├── activity_login.xml │ ├── activity_main.xml │ ├── activity_message_friend.xml │ ├── activity_my_publish.xml │ ├── activity_publish_good.xml │ ├── activity_publish_good_classification.xml │ ├── activity_publish_good_money.xml │ ├── activity_register.xml │ ├── activity_search.xml │ ├── activity_setting.xml │ ├── activity_setting_person.xml │ ├── activity_start_up.xml │ ├── chat_recycler.xml │ ├── fragment_add.xml │ ├── fragment_shequ.xml │ ├── fragment_shouye.xml │ ├── fragment_wode.xml │ ├── fragment_xiaoxi.xml │ ├── gv_filter_image.xml │ ├── index_recycler_good.xml │ ├── item_home.xml │ ├── item_home_category.xml │ ├── item_menu.xml │ ├── layout_refresh_footer.xml │ ├── message_friend_recycler.xml │ ├── publish_recycler_good.xml │ ├── setail_photo_item.xml │ └── shequ_recycler_good.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── add.png │ ├── aizaijianlou.png │ ├── alipay.png │ ├── all_classify.png │ ├── book.png │ ├── cat.jpg │ ├── cat_index.png │ ├── close.png │ ├── common_empty.png │ ├── frv.png │ ├── frw.png │ ├── game.png │ ├── ic_clear.png │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ ├── ic_mobile_flag.png │ ├── ic_navibar_scan.png │ ├── ic_password_flag.png │ ├── icon_activity_top.png │ ├── icon_pond_top.png │ ├── icon_reply_top.png │ ├── icon_system_top.png │ ├── jianlou.png │ ├── left.9.png │ ├── loading.gif │ ├── login_icon_left.png │ ├── login_icon_left_close.png │ ├── login_icon_right.png │ ├── login_icon_right_close.png │ ├── message_left.9.png │ ├── message_right.9.png │ ├── money.png │ ├── moremessage.png │ ├── pass_gone.png │ ├── pass_visuable.png │ ├── phone.png │ ├── qq.png │ ├── reload.png │ ├── right.9.png │ ├── rmb.png │ ├── search_clear_normal.png │ ├── search_clear_pressed.png │ ├── search_icon.png │ ├── setting.png │ ├── setting_white.png │ ├── social_github.png │ ├── social_sina.png │ ├── social_wechat.png │ ├── user.png │ ├── wofabude.png │ ├── womaichude.png │ └── womaidaode.png │ ├── mipmap-mdpi │ ├── addimg_1x.png │ ├── computer.png │ ├── home_fill.png │ ├── home_light.png │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ ├── icon.png │ ├── icon_check.png │ ├── keyboard.png │ ├── message.png │ ├── message_fill.png │ ├── people.png │ ├── people_fill.png │ ├── publish_content.png │ ├── publish_goods.png │ ├── round_close.png │ ├── shequ.png │ ├── shequ_fill.png │ ├── shequ_pencil.png │ └── shequ_searching.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ ├── index0.webp │ ├── index1.webp │ ├── index2.webp │ ├── index3.webp │ ├── index4.webp │ ├── index5.webp │ ├── index6.webp │ ├── shequ0.jpg │ ├── shequ1.webp │ ├── shequ10.png │ ├── shequ11.png │ ├── shequ2.png │ ├── shequ3.png │ ├── shequ4.png │ ├── shequ5.png │ ├── shequ6.png │ ├── shequ7.png │ ├── shequ8.png │ └── shequ9.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values-v19 │ └── styles.xml │ ├── values-v21 │ └── styles.xml │ ├── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── file_paths.xml │ └── network_security_config.xml └── project ├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml └── runConfigurations.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── .idea │ ├── .name │ ├── assetWizardSettings.xml │ ├── caches │ │ ├── build_file_checksums.ser │ │ └── gradle_models.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── libraries │ │ ├── Gradle__androidx_activity_activity_1_0_0_aar.xml │ │ ├── Gradle__androidx_annotation_annotation_1_0_0_jar.xml │ │ ├── Gradle__androidx_annotation_annotation_1_1_0_jar.xml │ │ ├── Gradle__androidx_appcompat_appcompat_1_0_2_aar.xml │ │ ├── Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml │ │ ├── Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml │ │ ├── Gradle__androidx_arch_core_core_common_2_0_0_jar.xml │ │ ├── Gradle__androidx_arch_core_core_common_2_1_0_jar.xml │ │ ├── Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml │ │ ├── Gradle__androidx_asynclayoutinflater_asynclayoutinflater_1_0_0_aar.xml │ │ ├── Gradle__androidx_collection_collection_1_0_0_jar.xml │ │ ├── Gradle__androidx_collection_collection_1_1_0_jar.xml │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3_jar.xml │ │ ├── Gradle__androidx_coordinatorlayout_coordinatorlayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_core_core_1_0_1_aar.xml │ │ ├── Gradle__androidx_core_core_1_1_0_aar.xml │ │ ├── Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml │ │ ├── Gradle__androidx_customview_customview_1_0_0_aar.xml │ │ ├── Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml │ │ ├── Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_fragment_fragment_1_0_0_aar.xml │ │ ├── Gradle__androidx_fragment_fragment_1_1_0_aar.xml │ │ ├── Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml │ │ ├── Gradle__androidx_legacy_legacy_support_core_ui_1_0_0_aar.xml │ │ ├── Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml │ │ ├── Gradle__androidx_legacy_legacy_support_v4_1_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_0_0_jar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml │ │ ├── Gradle__androidx_loader_loader_1_0_0_aar.xml │ │ ├── Gradle__androidx_localbroadcastmanager_localbroadcastmanager_1_0_0_aar.xml │ │ ├── Gradle__androidx_media_media_1_0_0_aar.xml │ │ ├── Gradle__androidx_print_print_1_0_0_aar.xml │ │ ├── Gradle__androidx_recyclerview_recyclerview_1_0_0_aar.xml │ │ ├── Gradle__androidx_recyclerview_recyclerview_1_1_0_rc01_aar.xml │ │ ├── Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml │ │ ├── Gradle__androidx_slidingpanelayout_slidingpanelayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_swiperefreshlayout_swiperefreshlayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_test_core_1_1_0_aar.xml │ │ ├── Gradle__androidx_test_core_1_2_0_aar.xml │ │ ├── Gradle__androidx_test_espresso_espresso_core_3_1_1_aar.xml │ │ ├── Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml │ │ ├── Gradle__androidx_test_espresso_espresso_idling_resource_3_1_1_aar.xml │ │ ├── Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml │ │ ├── Gradle__androidx_test_ext_junit_1_1_0_aar.xml │ │ ├── Gradle__androidx_test_ext_junit_1_1_1_aar.xml │ │ ├── Gradle__androidx_test_monitor_1_1_1_aar.xml │ │ ├── Gradle__androidx_test_monitor_1_2_0_aar.xml │ │ ├── Gradle__androidx_test_runner_1_1_1_aar.xml │ │ ├── Gradle__androidx_test_runner_1_2_0_aar.xml │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_0_1_aar.xml │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_0_0_aar.xml │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml │ │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_0_0_aar.xml │ │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml │ │ ├── Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml │ │ ├── Gradle__cn_bingoogolapple_bga_baseadapter_2_0_0_aar.xml │ │ ├── Gradle__cn_bingoogolapple_bga_photopicker_2_0_0_aar.xml │ │ ├── Gradle__com_android_support_support_annotations_26_0_0_jar.xml │ │ ├── Gradle__com_android_support_support_compat_26_0_0_aar.xml │ │ ├── Gradle__com_android_support_support_core_utils_26_0_0_aar.xml │ │ ├── Gradle__com_github_LuckSiege_PictureSelector_picture_library_v2_1_1_aar.xml │ │ ├── Gradle__com_github_LuckSiege_PictureSelector_picture_library_v2_2_9_aar.xml │ │ ├── Gradle__com_github_LuckSiege_PictureSelector_ucrop_v2_1_1_aar.xml │ │ ├── Gradle__com_github_bumptech_glide_annotations_4_10_0_jar.xml │ │ ├── Gradle__com_github_bumptech_glide_disklrucache_4_10_0_jar.xml │ │ ├── Gradle__com_github_bumptech_glide_gifdecoder_4_10_0_aar.xml │ │ ├── Gradle__com_github_bumptech_glide_glide_4_10_0_aar.xml │ │ ├── Gradle__com_github_chrisbanes_photoview_library_1_2_4_aar.xml │ │ ├── Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ ├── Gradle__com_squareup_haha_haha_2_0_4_jar.xml │ │ ├── Gradle__com_squareup_javawriter_2_1_1_jar.xml │ │ ├── Gradle__com_squareup_leakcanary_leakcanary_analyzer_1_6_2_aar.xml │ │ ├── Gradle__com_squareup_leakcanary_leakcanary_android_1_6_2_aar.xml │ │ ├── Gradle__com_squareup_leakcanary_leakcanary_android_no_op_1_6_2_aar.xml │ │ ├── Gradle__com_squareup_leakcanary_leakcanary_watcher_1_6_2_jar.xml │ │ ├── Gradle__com_squareup_okhttp3_okhttp_3_10_0_jar.xml │ │ ├── Gradle__com_squareup_okio_okio_1_14_0_jar.xml │ │ ├── Gradle__io_reactivex_rxjava2_rxandroid_2_0_1_aar.xml │ │ ├── Gradle__io_reactivex_rxjava2_rxandroid_2_1_1_aar.xml │ │ ├── Gradle__io_reactivex_rxjava2_rxjava_2_2_14_jar.xml │ │ ├── Gradle__io_reactivex_rxjava2_rxjava_2_2_6_jar.xml │ │ ├── Gradle__javax_inject_javax_inject_1_jar.xml │ │ ├── Gradle__junit_junit_4_12_jar.xml │ │ ├── Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml │ │ ├── Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ ├── Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ ├── Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml │ │ ├── Gradle__org_jetbrains_trove4j_trove4j_20160824_jar.xml │ │ ├── Gradle__org_reactivestreams_reactive_streams_1_0_0_jar.xml │ │ ├── Gradle__org_reactivestreams_reactive_streams_1_0_2_jar.xml │ │ ├── Gradle__org_reactivestreams_reactive_streams_1_0_3_jar.xml │ │ ├── Gradle__org_xutils_xutils_3_8_3_aar.xml │ │ └── Gradle__pub_devrel_easypermissions_1_0_1_aar.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── jianlou │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── category.json │ │ └── litepal.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── jianlou │ │ │ ├── Activity │ │ │ ├── MainActivity.java │ │ │ └── StartUP.java │ │ │ ├── Internet │ │ │ └── HttpUtil.java │ │ │ ├── Login │ │ │ ├── Login.java │ │ │ └── Register.java │ │ │ ├── index │ │ │ ├── EndlessRecyclerOnScrollListener.java │ │ │ ├── Good.java │ │ │ ├── GoodAdapter.java │ │ │ ├── Photo.java │ │ │ ├── PhotoAdapter.java │ │ │ ├── ShouYeFragment.java │ │ │ ├── classfiy │ │ │ │ ├── CategoryBean.java │ │ │ │ ├── GridViewForScrollView.java │ │ │ │ ├── HomeAdapter.java │ │ │ │ ├── HomeItemAdapter.java │ │ │ │ ├── MenuAdapter.java │ │ │ │ └── classify.java │ │ │ ├── good_detail.java │ │ │ ├── index_search.java │ │ │ └── search.java │ │ │ ├── message │ │ │ ├── ChatMessage.java │ │ │ ├── MSgAdapter.java │ │ │ ├── Message.java │ │ │ ├── MessageAdapter.java │ │ │ ├── Msg.java │ │ │ ├── XiaoXiFragment.java │ │ │ ├── chat.java │ │ │ └── message_friend.java │ │ │ ├── my │ │ │ ├── CircleTransform.java │ │ │ ├── EditName.java │ │ │ ├── Publish.java │ │ │ ├── PublishAdapter.java │ │ │ ├── RoundTransform.java │ │ │ ├── Setting.java │ │ │ ├── SettingPerson.java │ │ │ ├── WoDeFragment.java │ │ │ └── myPublish.java │ │ │ ├── publish │ │ │ ├── publish │ │ │ │ ├── FastBlur.java │ │ │ │ ├── KickBackAnimator.java │ │ │ │ └── Publish.java │ │ │ └── publishGood │ │ │ │ ├── FullyGridLayoutManager.java │ │ │ │ ├── GridImageAdapter.java │ │ │ │ ├── PublishGoodActivity.java │ │ │ │ ├── PublishGoodClassification.java │ │ │ │ └── PublishGoodMoney.java │ │ │ ├── shequ │ │ │ ├── Post.java │ │ │ ├── PostAdapter.java │ │ │ └── SheQuFragment.java │ │ │ ├── staticVar │ │ │ ├── StaticVar.java │ │ │ └── Table.java │ │ │ └── view │ │ │ └── MyScrollView.java │ └── res │ │ ├── drawable-v21 │ │ ├── ic_menu_camera.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_menu_manage.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_share.xml │ │ └── ic_menu_slideshow.xml │ │ ├── drawable │ │ ├── bg_btn_login_selected.xml │ │ ├── bg_select_default.xml │ │ ├── bg_select_pressed.xml │ │ ├── bt_tag_bg.xml │ │ ├── btn_search_bg.xml │ │ ├── checkbox_num_selector.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── iv_delete_bg.xml │ │ ├── lv_search_tips_bg.xml │ │ ├── message_friend_divider_inset.xml │ │ ├── message_friend_shape_line.xml │ │ ├── num_oval_blue.xml │ │ ├── num_oval_blue_def.xml │ │ ├── progressbar_refresh.xml │ │ ├── search_edittext_shape.xml │ │ ├── search_sort_select.xml │ │ ├── select_selector.xml │ │ ├── send_shape.xml │ │ ├── shape.xml │ │ ├── shequ_publsh_shape.xml │ │ ├── shequuser.xml │ │ ├── side_nav_bar.xml │ │ ├── toolbar_dropshadow.xml │ │ ├── txt_select_selector.xml │ │ ├── x_nav_menu_color.xml │ │ ├── x_nav_menu_sq.xml │ │ ├── x_nav_menu_sy.xml │ │ ├── x_nav_menu_wd.xml │ │ └── x_nav_menu_xx.xml │ │ ├── layout │ │ ├── activity_chat.xml │ │ ├── activity_classfiy.xml │ │ ├── activity_edit_name.xml │ │ ├── activity_good_detail.xml │ │ ├── activity_index_search.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_message_friend.xml │ │ ├── activity_my_publish.xml │ │ ├── activity_publish_good.xml │ │ ├── activity_publish_good_classification.xml │ │ ├── activity_publish_good_money.xml │ │ ├── activity_register.xml │ │ ├── activity_search.xml │ │ ├── activity_setting.xml │ │ ├── activity_setting_person.xml │ │ ├── activity_start_up.xml │ │ ├── chat_recycler.xml │ │ ├── fragment_add.xml │ │ ├── fragment_shequ.xml │ │ ├── fragment_shouye.xml │ │ ├── fragment_wode.xml │ │ ├── fragment_xiaoxi.xml │ │ ├── gv_filter_image.xml │ │ ├── index_recycler_good.xml │ │ ├── item_home.xml │ │ ├── item_home_category.xml │ │ ├── item_menu.xml │ │ ├── layout_refresh_footer.xml │ │ ├── message_friend_recycler.xml │ │ ├── publish_recycler_good.xml │ │ ├── setail_photo_item.xml │ │ └── shequ_recycler_good.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── add.png │ │ ├── aizaijianlou.png │ │ ├── alipay.png │ │ ├── all_classify.png │ │ ├── book.png │ │ ├── cat.jpg │ │ ├── cat_index.png │ │ ├── close.png │ │ ├── common_empty.png │ │ ├── frv.png │ │ ├── frw.png │ │ ├── game.png │ │ ├── ic_clear.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ ├── ic_mobile_flag.png │ │ ├── ic_navibar_scan.png │ │ ├── ic_password_flag.png │ │ ├── icon_activity_top.png │ │ ├── icon_pond_top.png │ │ ├── icon_reply_top.png │ │ ├── icon_system_top.png │ │ ├── jianlou.png │ │ ├── left.9.png │ │ ├── loading.gif │ │ ├── login_icon_left.png │ │ ├── login_icon_left_close.png │ │ ├── login_icon_right.png │ │ ├── login_icon_right_close.png │ │ ├── message_left.9.png │ │ ├── message_right.9.png │ │ ├── money.png │ │ ├── moremessage.png │ │ ├── pass_gone.png │ │ ├── pass_visuable.png │ │ ├── phone.png │ │ ├── qq.png │ │ ├── reload.png │ │ ├── right.9.png │ │ ├── rmb.png │ │ ├── search_clear_normal.png │ │ ├── search_clear_pressed.png │ │ ├── search_icon.png │ │ ├── setting.png │ │ ├── setting_white.png │ │ ├── social_github.png │ │ ├── social_sina.png │ │ ├── social_wechat.png │ │ ├── user.png │ │ ├── wofabude.png │ │ ├── womaichude.png │ │ └── womaidaode.png │ │ ├── mipmap-mdpi │ │ ├── addimg_1x.png │ │ ├── computer.png │ │ ├── home_fill.png │ │ ├── home_light.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ ├── icon.png │ │ ├── icon_check.png │ │ ├── keyboard.png │ │ ├── message.png │ │ ├── message_fill.png │ │ ├── people.png │ │ ├── people_fill.png │ │ ├── publish_content.png │ │ ├── publish_goods.png │ │ ├── round_close.png │ │ ├── shequ.png │ │ ├── shequ_fill.png │ │ ├── shequ_pencil.png │ │ └── shequ_searching.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ ├── index0.webp │ │ ├── index1.webp │ │ ├── index2.webp │ │ ├── index3.webp │ │ ├── index4.webp │ │ ├── index5.webp │ │ ├── index6.webp │ │ ├── shequ0.jpg │ │ ├── shequ1.webp │ │ ├── shequ10.png │ │ ├── shequ11.png │ │ ├── shequ2.png │ │ ├── shequ3.png │ │ ├── shequ4.png │ │ ├── shequ5.png │ │ ├── shequ6.png │ │ ├── shequ7.png │ │ ├── shequ8.png │ │ └── shequ9.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-v19 │ │ └── styles.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── file_paths.xml │ │ └── network_security_config.xml │ └── test │ └── java │ └── com │ └── example │ └── jianlou │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | -------------------------------------------------------------------------------- /APP/捡喽.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/APP/捡喽.apk -------------------------------------------------------------------------------- /houtai/jianlou/ChineseAnalyzer.py: -------------------------------------------------------------------------------- 1 | import jieba 2 | from whoosh.analysis import Tokenizer, Token 3 | 4 | 5 | class ChineseTokenizer(Tokenizer): 6 | def __call__(self, value, positions=False, chars=False, 7 | keeporiginal=False, removestops=True, 8 | start_pos=0, start_char=0, mode='', **kwargs): 9 | t = Token(positions, chars, removestops=removestops, mode=mode, 10 | **kwargs) 11 | seglist = jieba.cut(value, cut_all=True) 12 | for w in seglist: 13 | t.original = t.text = w 14 | t.boost = 1.0 15 | if positions: 16 | t.pos = start_pos + value.find(w) 17 | if chars: 18 | t.startchar = start_char + value.find(w) 19 | t.endchar = start_char + value.find(w) + len(w) 20 | yield t 21 | 22 | 23 | def ChineseAnalyzer(): 24 | return ChineseTokenizer() 25 | -------------------------------------------------------------------------------- /houtai/jianlou/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/houtai/jianlou/__init__.py -------------------------------------------------------------------------------- /houtai/jianlou/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Goods 3 | 4 | admin.site.register(Goods) 5 | 6 | 7 | 8 | 9 | # Register your models here. 10 | -------------------------------------------------------------------------------- /houtai/jianlou/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class JianlouConfig(AppConfig): 5 | name = 'jianlou' 6 | -------------------------------------------------------------------------------- /houtai/jianlou/templates/jianlou/base.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 捡喽主页 6 | 7 | 8 |

9 | 捡喽 10 |

11 | 12 | {% block content %}{% endblock content %} 13 | 14 | -------------------------------------------------------------------------------- /houtai/jianlou/templates/jianlou/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 商品 6 | 7 | 8 | {% extends "jianlou/base.html" %} 9 | {% block content %} 10 | 11 | {% if latest_goods_list %} 12 | 17 | {% else %} 18 |

No goods are available.

19 | {% endif %} 20 | 21 | {% endblock content %} 22 | 23 | -------------------------------------------------------------------------------- /houtai/jianlou/templates/search/indexes/jianlou/Goods_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.content }} 2 | {{ object.classify }} -------------------------------------------------------------------------------- /houtai/jianlou/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /houtai/jianlou_test/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | pymysql.install_as_MySQLdb() 3 | -------------------------------------------------------------------------------- /houtai/jianlou_test/urls.py: -------------------------------------------------------------------------------- 1 | """jianlou_test URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/2.2/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.urls import include, path 14 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 15 | """ 16 | from django.contrib import admin 17 | from django.urls import path, include 18 | # admin.autodiscover() 19 | urlpatterns = [ 20 | path('jianlou/', admin.site.urls), 21 | path('', include('jianlou.urls')), 22 | ] 23 | 24 | 25 | -------------------------------------------------------------------------------- /houtai/jianlou_test/whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/houtai/jianlou_test/whoosh_index/MAIN_WRITELOCK -------------------------------------------------------------------------------- /houtai/jianlou_test/whoosh_index/MAIN_oggvg676uwr1xo8t.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/houtai/jianlou_test/whoosh_index/MAIN_oggvg676uwr1xo8t.seg -------------------------------------------------------------------------------- /houtai/jianlou_test/whoosh_index/MAIN_q3pmmtz311j3zrd3.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/houtai/jianlou_test/whoosh_index/MAIN_q3pmmtz311j3zrd3.seg -------------------------------------------------------------------------------- /houtai/jianlou_test/whoosh_index/_MAIN_2.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/houtai/jianlou_test/whoosh_index/_MAIN_2.toc -------------------------------------------------------------------------------- /houtai/jianlou_test/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for jianlou_test project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'jianlou_test.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /houtai/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'jianlou_test.settings') 9 | try: 10 | from django.core.management import execute_from_command_line 11 | except ImportError as exc: 12 | raise ImportError( 13 | "Couldn't import Django. Are you sure it's installed and " 14 | "available on your PYTHONPATH environment variable? Did you " 15 | "forget to activate a virtual environment?" 16 | ) from exc 17 | execute_from_command_line(sys.argv) 18 | 19 | 20 | if __name__ == '__main__': 21 | main() 22 | -------------------------------------------------------------------------------- /image/chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/chat.jpg -------------------------------------------------------------------------------- /image/classfiy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/classfiy.jpg -------------------------------------------------------------------------------- /image/edit_name.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/edit_name.jpg -------------------------------------------------------------------------------- /image/friend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/friend.jpg -------------------------------------------------------------------------------- /image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/icon.png -------------------------------------------------------------------------------- /image/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/index.jpg -------------------------------------------------------------------------------- /image/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/login.jpg -------------------------------------------------------------------------------- /image/message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/message.jpg -------------------------------------------------------------------------------- /image/my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/my.jpg -------------------------------------------------------------------------------- /image/publish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/publish.jpg -------------------------------------------------------------------------------- /image/publish_good.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/publish_good.jpg -------------------------------------------------------------------------------- /image/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/search.jpg -------------------------------------------------------------------------------- /image/search_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/search_result.jpg -------------------------------------------------------------------------------- /image/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/setting.png -------------------------------------------------------------------------------- /image/setting_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/setting_person.png -------------------------------------------------------------------------------- /image/shequ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/shequ.jpg -------------------------------------------------------------------------------- /image/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/image/start.jpg -------------------------------------------------------------------------------- /main/assets/litepal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /main/java/com/example/jianlou/index/Photo.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.index; 2 | import android.net.Uri; 3 | 4 | public class Photo { 5 | /** 6 | * 商品类,就是首页的商品的显示的类 7 | */ 8 | private Uri photoID; 9 | public Photo(Uri photoImageID){ 10 | photoID=photoImageID; 11 | } 12 | public Uri getPhotoPhotoID(){ 13 | return photoID; 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /main/java/com/example/jianlou/message/Message.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.message; 2 | 3 | public class Message { 4 | /** 5 | * 消息界面 6 | */ 7 | private int headID; 8 | private String message,user_name,username; 9 | 10 | public Message(int headImageID,String string_message,String string_user_name,String username){ 11 | headID=headImageID; 12 | message=string_message; 13 | user_name=string_user_name; 14 | this.username=username; 15 | } 16 | 17 | public int getMessageHeadID() { 18 | return headID; 19 | } 20 | 21 | public String getMessageUser_name() { 22 | return user_name; 23 | } 24 | 25 | public String getMessageMessage() { 26 | return message; 27 | } 28 | 29 | public String geMessagetUsername() { 30 | return username; 31 | } 32 | } -------------------------------------------------------------------------------- /main/java/com/example/jianlou/message/Msg.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.message; 2 | 3 | public class Msg { 4 | public static final int TYPE_RECEIVED =0; 5 | public static final int TYPE_SEND =1; 6 | private String content; 7 | private int headID,type; 8 | 9 | public Msg(String content,int type,int headID){ 10 | this.content=content; 11 | this.type=type; 12 | this.headID=headID; 13 | } 14 | 15 | public int getMsgHeadID() { 16 | return headID; 17 | } 18 | 19 | public int getMsgType() { 20 | return type; 21 | } 22 | 23 | public String getMsgContent() { 24 | return content; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /main/java/com/example/jianlou/my/Publish.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.my; 2 | import android.net.Uri; 3 | 4 | public class Publish { 5 | /** 6 | * 商品类,就是首页的商品的显示的类 7 | */ 8 | private Uri photoID; 9 | private String content,money,goodID; 10 | public Publish(Uri photoImageID,String string_content,String string_money,String goodID){ 11 | photoID=photoImageID; 12 | content=string_content; 13 | money=string_money; 14 | this.goodID=goodID; 15 | } 16 | public Uri getPhotoID(){ 17 | return photoID; 18 | } 19 | 20 | public String getContent() { 21 | return content; 22 | } 23 | 24 | public String getMoney() { 25 | return money; 26 | } 27 | 28 | public String getGoodID() { 29 | return goodID; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /main/java/com/example/jianlou/publish/publish/KickBackAnimator.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.publish.publish; 2 | 3 | import android.animation.TypeEvaluator; 4 | 5 | 6 | /** 7 | * 看不懂,似乎是处理动画的弹出的速度的 8 | */ 9 | public class KickBackAnimator implements TypeEvaluator { 10 | private float mDuration = 0f; 11 | 12 | void setDuration(float duration) { 13 | mDuration = duration; 14 | } 15 | 16 | public Float evaluate(float fraction, Float startValue, Float endValue) { 17 | float t = mDuration * fraction; 18 | float b = startValue; 19 | float c = endValue - startValue; 20 | float d = mDuration; 21 | return calculate(t, b, c, d); 22 | } 23 | 24 | private Float calculate(float t, float b, float c, float d) { 25 | float s = 1.70158f; 26 | return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b; 27 | } 28 | } 29 | 30 | -------------------------------------------------------------------------------- /main/java/com/example/jianlou/staticVar/Table.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.staticVar; 2 | 3 | public class Table { 4 | //商品属性 5 | public static final String cookie="cookie"; 6 | public static final String content="content"; 7 | public static final String money="money"; 8 | public static final String origin_money="origin_money"; 9 | public static final String send_money="send_money"; 10 | public static final String classify="classify"; 11 | public static final String time="time"; 12 | //用户属性 13 | public static final String username="account"; 14 | public static final String password="password"; 15 | public static final String user_name="user_name"; 16 | 17 | public static final String Username="username"; 18 | public static final String message="message"; 19 | 20 | } 21 | 22 | -------------------------------------------------------------------------------- /main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /main/res/drawable/bg_btn_login_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /main/res/drawable/bg_select_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /main/res/drawable/bg_select_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /main/res/drawable/bt_tag_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /main/res/drawable/btn_search_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /main/res/drawable/checkbox_num_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /main/res/drawable/iv_delete_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/drawable/lv_search_tips_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /main/res/drawable/message_friend_divider_inset.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /main/res/drawable/message_friend_shape_line.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/drawable/num_oval_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 13 | -------------------------------------------------------------------------------- /main/res/drawable/num_oval_blue_def.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 13 | -------------------------------------------------------------------------------- /main/res/drawable/progressbar_refresh.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /main/res/drawable/search_edittext_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /main/res/drawable/search_sort_select.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | -------------------------------------------------------------------------------- /main/res/drawable/select_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /main/res/drawable/send_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /main/res/drawable/shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /main/res/drawable/shequ_publsh_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /main/res/drawable/shequuser.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /main/res/drawable/toolbar_dropshadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /main/res/drawable/txt_select_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /main/res/drawable/x_nav_menu_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /main/res/drawable/x_nav_menu_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/drawable/x_nav_menu_sy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/drawable/x_nav_menu_wd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/drawable/x_nav_menu_xx.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/layout/activity_index_search.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 18 | -------------------------------------------------------------------------------- /main/res/layout/item_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 15 | 16 | 21 | -------------------------------------------------------------------------------- /main/res/layout/item_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /main/res/layout/setail_photo_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 14 | -------------------------------------------------------------------------------- /main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | -------------------------------------------------------------------------------- /main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/add.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/aizaijianlou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/aizaijianlou.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/alipay.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/all_classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/all_classify.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/book.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/cat.jpg -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/cat_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/cat_index.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/close.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/common_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/common_empty.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/frv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/frv.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/frw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/frw.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/game.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/ic_clear.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/ic_mobile_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/ic_mobile_flag.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/ic_navibar_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/ic_navibar_scan.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/ic_password_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/ic_password_flag.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/icon_activity_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/icon_activity_top.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/icon_pond_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/icon_pond_top.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/icon_reply_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/icon_reply_top.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/icon_system_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/icon_system_top.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/jianlou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/jianlou.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/left.9.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/loading.gif -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/login_icon_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/login_icon_left.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/login_icon_left_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/login_icon_left_close.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/login_icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/login_icon_right.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/login_icon_right_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/login_icon_right_close.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/message_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/message_left.9.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/message_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/message_right.9.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/money.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/moremessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/moremessage.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/pass_gone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/pass_gone.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/pass_visuable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/pass_visuable.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/phone.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/qq.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/reload.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/right.9.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/rmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/rmb.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/search_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/search_clear_normal.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/search_clear_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/search_clear_pressed.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/search_icon.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/setting.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/setting_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/setting_white.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/social_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/social_github.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/social_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/social_sina.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/social_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/social_wechat.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/user.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/wofabude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/wofabude.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/womaichude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/womaichude.png -------------------------------------------------------------------------------- /main/res/mipmap-hdpi/womaidaode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-hdpi/womaidaode.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/addimg_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/addimg_1x.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/computer.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/home_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/home_fill.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/home_light.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/icon_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/icon_check.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/keyboard.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/message.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/message_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/message_fill.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/people.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/people_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/people_fill.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/publish_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/publish_content.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/publish_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/publish_goods.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/round_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/round_close.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/shequ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/shequ.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/shequ_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/shequ_fill.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/shequ_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/shequ_pencil.png -------------------------------------------------------------------------------- /main/res/mipmap-mdpi/shequ_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-mdpi/shequ_searching.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index0.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index1.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index2.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index3.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index4.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index5.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/index6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/index6.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ0.jpg -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ1.webp -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ10.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ11.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ2.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ3.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ4.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ5.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ6.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ7.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ8.png -------------------------------------------------------------------------------- /main/res/mipmap-xhdpi/shequ9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xhdpi/shequ9.png -------------------------------------------------------------------------------- /main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12dp 5 | 6 | 16dp 7 | 16dp 8 | 8dp 9 | 176dp 10 | 16dp 11 | 12 | 13 | -------------------------------------------------------------------------------- /main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /project/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /project/.idea/.name: -------------------------------------------------------------------------------- 1 | Jianlou -------------------------------------------------------------------------------- /project/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | -------------------------------------------------------------------------------- /project/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /project/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /project/app/src/.idea/.name: -------------------------------------------------------------------------------- 1 | Jianlou -------------------------------------------------------------------------------- /project/app/src/.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /project/app/src/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /project/app/src/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_activity_activity_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_annotation_annotation_1_0_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_annotation_annotation_1_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_0_2_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_arch_core_core_common_2_0_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_asynclayoutinflater_asynclayoutinflater_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_collection_collection_1_0_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_collection_collection_1_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_core_core_1_0_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_core_core_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_fragment_fragment_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_fragment_fragment_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_ui_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_legacy_legacy_support_v4_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_0_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_1_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_localbroadcastmanager_localbroadcastmanager_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_media_media_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_print_print_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_slidingpanelayout_slidingpanelayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_core_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_core_1_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_ext_junit_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_ext_junit_1_1_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_monitor_1_1_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_monitor_1_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_runner_1_1_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_test_runner_1_2_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_0_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_android_support_support_annotations_26_0_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_android_support_support_compat_26_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_android_support_support_core_utils_26_0_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_github_LuckSiege_PictureSelector_picture_library_v2_1_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_github_LuckSiege_PictureSelector_picture_library_v2_2_9_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_github_LuckSiege_PictureSelector_ucrop_v2_1_1_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_github_bumptech_glide_annotations_4_10_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_github_bumptech_glide_disklrucache_4_10_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_github_bumptech_glide_glide_4_10_0_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_squareup_haha_haha_2_0_4_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_squareup_leakcanary_leakcanary_watcher_1_6_2_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_squareup_okhttp3_okhttp_3_10_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__com_squareup_okio_okio_1_14_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__io_reactivex_rxjava2_rxjava_2_2_14_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__io_reactivex_rxjava2_rxjava_2_2_6_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_jetbrains_trove4j_trove4j_20160824_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_reactivestreams_reactive_streams_1_0_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_reactivestreams_reactive_streams_1_0_2_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_reactivestreams_reactive_streams_1_0_3_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/.idea/libraries/Gradle__org_xutils_xutils_3_8_3_aar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /project/app/src/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/app/src/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/androidTest/java/com/example/jianlou/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | 25 | assertEquals("com.example.jianlou", appContext.getPackageName()); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /project/app/src/main/assets/litepal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/example/jianlou/index/Photo.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.index; 2 | import android.net.Uri; 3 | 4 | public class Photo { 5 | /** 6 | * 商品类,就是首页的商品的显示的类 7 | */ 8 | private Uri photoID; 9 | public Photo(Uri photoImageID){ 10 | photoID=photoImageID; 11 | } 12 | public Uri getPhotoPhotoID(){ 13 | return photoID; 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/example/jianlou/message/Message.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.message; 2 | 3 | public class Message { 4 | /** 5 | * 消息界面 6 | */ 7 | private int headID; 8 | private String message,user_name,username; 9 | 10 | public Message(int headImageID,String string_message,String string_user_name,String username){ 11 | headID=headImageID; 12 | message=string_message; 13 | user_name=string_user_name; 14 | this.username=username; 15 | } 16 | 17 | public int getMessageHeadID() { 18 | return headID; 19 | } 20 | 21 | public String getMessageUser_name() { 22 | return user_name; 23 | } 24 | 25 | public String getMessageMessage() { 26 | return message; 27 | } 28 | 29 | public String geMessagetUsername() { 30 | return username; 31 | } 32 | } -------------------------------------------------------------------------------- /project/app/src/main/java/com/example/jianlou/message/Msg.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.message; 2 | 3 | public class Msg { 4 | public static final int TYPE_RECEIVED =0; 5 | public static final int TYPE_SEND =1; 6 | private String content; 7 | private int headID,type; 8 | 9 | public Msg(String content,int type,int headID){ 10 | this.content=content; 11 | this.type=type; 12 | this.headID=headID; 13 | } 14 | 15 | public int getMsgHeadID() { 16 | return headID; 17 | } 18 | 19 | public int getMsgType() { 20 | return type; 21 | } 22 | 23 | public String getMsgContent() { 24 | return content; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/example/jianlou/my/Publish.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.my; 2 | import android.net.Uri; 3 | 4 | public class Publish { 5 | /** 6 | * 商品类,就是首页的商品的显示的类 7 | */ 8 | private Uri photoID; 9 | private String content,money,goodID; 10 | public Publish(Uri photoImageID,String string_content,String string_money,String goodID){ 11 | photoID=photoImageID; 12 | content=string_content; 13 | money=string_money; 14 | this.goodID=goodID; 15 | } 16 | public Uri getPhotoID(){ 17 | return photoID; 18 | } 19 | 20 | public String getContent() { 21 | return content; 22 | } 23 | 24 | public String getMoney() { 25 | return money; 26 | } 27 | 28 | public String getGoodID() { 29 | return goodID; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/example/jianlou/publish/publish/KickBackAnimator.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.publish.publish; 2 | 3 | import android.animation.TypeEvaluator; 4 | 5 | 6 | /** 7 | * 看不懂,似乎是处理动画的弹出的速度的 8 | */ 9 | public class KickBackAnimator implements TypeEvaluator { 10 | private float mDuration = 0f; 11 | 12 | void setDuration(float duration) { 13 | mDuration = duration; 14 | } 15 | 16 | public Float evaluate(float fraction, Float startValue, Float endValue) { 17 | float t = mDuration * fraction; 18 | float b = startValue; 19 | float c = endValue - startValue; 20 | float d = mDuration; 21 | return calculate(t, b, c, d); 22 | } 23 | 24 | private Float calculate(float t, float b, float c, float d) { 25 | float s = 1.70158f; 26 | return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b; 27 | } 28 | } 29 | 30 | -------------------------------------------------------------------------------- /project/app/src/main/java/com/example/jianlou/staticVar/Table.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou.staticVar; 2 | 3 | public class Table { 4 | //商品属性 5 | public static final String cookie="cookie"; 6 | public static final String content="content"; 7 | public static final String money="money"; 8 | public static final String origin_money="origin_money"; 9 | public static final String send_money="send_money"; 10 | public static final String classify="classify"; 11 | public static final String time="time"; 12 | //用户属性 13 | public static final String username="account"; 14 | public static final String password="password"; 15 | public static final String user_name="user_name"; 16 | 17 | public static final String Username="username"; 18 | public static final String message="message"; 19 | 20 | } 21 | 22 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_btn_login_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_select_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bg_select_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/bt_tag_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/btn_search_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/checkbox_num_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/iv_delete_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/lv_search_tips_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/message_friend_divider_inset.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/message_friend_shape_line.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/num_oval_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 13 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/num_oval_blue_def.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 13 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/progressbar_refresh.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/search_edittext_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/search_sort_select.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 8 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/select_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/send_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/shequ_publsh_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/shequuser.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/toolbar_dropshadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/txt_select_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/x_nav_menu_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/x_nav_menu_sq.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/x_nav_menu_sy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/x_nav_menu_wd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/drawable/x_nav_menu_xx.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/activity_index_search.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 18 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/item_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 15 | 16 | 21 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/item_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /project/app/src/main/res/layout/setail_photo_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 14 | -------------------------------------------------------------------------------- /project/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/add.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/aizaijianlou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/aizaijianlou.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/alipay.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/all_classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/all_classify.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/book.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/cat.jpg -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/cat_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/cat_index.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/close.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/common_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/common_empty.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/frv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/frv.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/frw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/frw.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/game.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/ic_clear.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/ic_mobile_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/ic_mobile_flag.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/ic_navibar_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/ic_navibar_scan.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/ic_password_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/ic_password_flag.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/icon_activity_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/icon_activity_top.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/icon_pond_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/icon_pond_top.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/icon_reply_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/icon_reply_top.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/icon_system_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/icon_system_top.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/jianlou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/jianlou.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/left.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/loading.gif -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/login_icon_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/login_icon_left.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/login_icon_left_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/login_icon_left_close.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/login_icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/login_icon_right.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/login_icon_right_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/login_icon_right_close.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/message_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/message_left.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/message_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/message_right.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/money.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/moremessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/moremessage.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/pass_gone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/pass_gone.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/pass_visuable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/pass_visuable.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/phone.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/qq.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/reload.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/right.9.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/rmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/rmb.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/search_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/search_clear_normal.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/search_clear_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/search_clear_pressed.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/search_icon.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/setting.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/setting_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/setting_white.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/social_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/social_github.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/social_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/social_sina.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/social_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/social_wechat.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/user.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/wofabude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/wofabude.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/womaichude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/womaichude.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-hdpi/womaidaode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-hdpi/womaidaode.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/addimg_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/addimg_1x.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/computer.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/home_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/home_fill.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/home_light.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/icon_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/icon_check.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/keyboard.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/message.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/message_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/message_fill.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/people.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/people_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/people_fill.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/publish_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/publish_content.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/publish_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/publish_goods.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/round_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/round_close.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/shequ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/shequ.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/shequ_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/shequ_fill.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/shequ_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/shequ_pencil.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-mdpi/shequ_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-mdpi/shequ_searching.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index0.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index1.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index2.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index3.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index4.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index5.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/index6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/index6.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ0.jpg -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ1.webp -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ10.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ11.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ2.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ3.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ4.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ5.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ6.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ7.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ8.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xhdpi/shequ9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xhdpi/shequ9.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinexplorer/Jianlou/e6d218f4f28fefc32db92e7be5eca48cdfc4544a/project/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /project/app/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | -------------------------------------------------------------------------------- /project/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | -------------------------------------------------------------------------------- /project/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12dp 5 | 6 | 16dp 7 | 16dp 8 | 8dp 9 | 176dp 10 | 16dp 11 | 12 | 13 | -------------------------------------------------------------------------------- /project/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /project/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /project/app/src/test/java/com/example/jianlou/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.jianlou; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /project/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | 6 | google() 7 | jcenter() 8 | 9 | } 10 | dependencies { 11 | classpath 'com.android.tools.build:gradle:3.5.2' 12 | 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | maven { url 'https://jitpack.io' } 21 | mavenCentral() 22 | google() 23 | jcenter() 24 | 25 | } 26 | } 27 | 28 | task clean(type: Delete) { 29 | delete rootProject.buildDir 30 | } 31 | -------------------------------------------------------------------------------- /project/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Oct 31 16:48:32 CST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 7 | -------------------------------------------------------------------------------- /project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Jianlou' 3 | --------------------------------------------------------------------------------