├── InterView ├── app │ ├── .gitignore │ └── src │ │ ├── main │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── layout-v17 │ │ │ │ └── my_daydream.xml │ │ │ └── layout │ │ │ │ ├── activity_life.xml │ │ │ │ └── activity_task.xml │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── why168 │ │ │ └── interview │ │ │ ├── constant │ │ │ └── Constants.java │ │ │ └── broadcast │ │ │ ├── MyReceiver3.java │ │ │ └── MyReceiver2.java │ │ └── test │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── interview │ │ └── ExampleUnitTest.java ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── README.md └── build.gradle ├── MVPStudy ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ ├── drawable-xxxhdpi │ │ │ └── logo.png │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── drawable │ │ │ ├── touch_feedback.xml │ │ │ ├── list_completed_touch_feedback.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_done.xml │ │ │ ├── ic_menu.xml │ │ │ ├── ic_filter_list.xml │ │ │ ├── ic_list.xml │ │ │ ├── ic_statistics.xml │ │ │ ├── ic_statistics_24dp.xml │ │ │ ├── ic_check_circle_24dp.xml │ │ │ ├── ic_verified_user_24dp.xml │ │ │ ├── ic_statistics_100dp.xml │ │ │ └── ic_assignment_turned_in_24dp.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── mvpstudy │ │ └── base │ │ ├── BasePresenter.java │ │ └── BaseView.java ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── OkHttpStudy ├── app │ ├── .gitignore │ └── src │ │ ├── main │ │ └── res │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── test │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── okhttpstudy │ │ └── ExampleUnitTest.java ├── settings.gradle ├── okhttp3 │ ├── src │ │ └── main │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── BaseView ├── settings.gradle ├── app │ └── src │ │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── mipmap-xhdpi │ │ │ ├── top.jpg │ │ │ └── ic_launcher.png │ │ ├── mipmap-hdpi │ │ │ ├── smiley_00.png │ │ │ ├── smiley_01.png │ │ │ ├── smiley_02.png │ │ │ ├── smiley_03.png │ │ │ ├── smiley_04.png │ │ │ ├── smiley_05.png │ │ │ ├── smiley_06.png │ │ │ ├── smiley_07.png │ │ │ ├── smiley_08.png │ │ │ ├── smiley_09.png │ │ │ ├── smiley_10.png │ │ │ ├── smiley_11.png │ │ │ ├── smiley_12.png │ │ │ ├── smiley_13.png │ │ │ ├── smiley_14.png │ │ │ ├── smiley_15.png │ │ │ ├── smiley_16.png │ │ │ ├── smiley_17.png │ │ │ ├── smiley_18.png │ │ │ ├── smiley_19.png │ │ │ ├── smiley_20.png │ │ │ ├── smiley_21.png │ │ │ ├── smiley_22.png │ │ │ ├── smiley_23.png │ │ │ ├── smiley_24.png │ │ │ ├── smiley_25.png │ │ │ ├── smiley_26.png │ │ │ ├── smiley_27.png │ │ │ ├── smiley_28.png │ │ │ ├── smiley_29.png │ │ │ ├── smiley_30.png │ │ │ ├── smiley_31.png │ │ │ ├── smiley_32.png │ │ │ ├── smiley_33.png │ │ │ ├── smiley_34.png │ │ │ ├── smiley_35.png │ │ │ ├── smiley_36.png │ │ │ ├── smiley_37.png │ │ │ ├── smiley_38.png │ │ │ ├── smiley_39.png │ │ │ ├── smiley_40.png │ │ │ ├── smiley_41.png │ │ │ ├── smiley_42.png │ │ │ ├── smiley_43.png │ │ │ ├── smiley_44.png │ │ │ ├── smiley_45.png │ │ │ ├── smiley_46.png │ │ │ ├── smiley_47.png │ │ │ ├── smiley_48.png │ │ │ ├── smiley_49.png │ │ │ ├── smiley_50.png │ │ │ ├── smiley_51.png │ │ │ ├── smiley_52.png │ │ │ ├── smiley_53.png │ │ │ ├── smiley_54.png │ │ │ ├── smiley_55.png │ │ │ ├── smiley_56.png │ │ │ ├── smiley_57.png │ │ │ ├── smiley_58.png │ │ │ ├── smiley_59.png │ │ │ ├── smiley_60.png │ │ │ ├── smiley_61.png │ │ │ ├── smiley_62.png │ │ │ ├── smiley_63.png │ │ │ ├── smiley_64.png │ │ │ ├── smiley_65.png │ │ │ ├── smiley_66.png │ │ │ ├── smiley_67.png │ │ │ ├── smiley_68.png │ │ │ ├── smiley_69.png │ │ │ ├── smiley_70.png │ │ │ ├── smiley_71.png │ │ │ ├── smiley_72.png │ │ │ ├── smiley_73.png │ │ │ ├── smiley_74.png │ │ │ ├── smiley_75.png │ │ │ ├── smiley_76.png │ │ │ ├── smiley_77.png │ │ │ ├── smiley_78.png │ │ │ ├── smiley_79.png │ │ │ ├── smiley_80.png │ │ │ ├── smiley_81.png │ │ │ ├── smiley_82.png │ │ │ ├── smiley_83.png │ │ │ ├── smiley_84.png │ │ │ ├── smiley_85.png │ │ │ ├── smiley_86.png │ │ │ ├── smiley_87.png │ │ │ ├── smiley_88.png │ │ │ ├── smiley_89.png │ │ │ ├── smiley_90.png │ │ │ ├── smiley_91.png │ │ │ ├── smiley_92.png │ │ │ ├── smiley_93.png │ │ │ ├── smiley_94.png │ │ │ ├── smiley_95.png │ │ │ ├── smiley_96.png │ │ │ ├── smiley_97.png │ │ │ ├── smiley_98.png │ │ │ ├── smiley_99.png │ │ │ ├── del_btn_nor.png │ │ │ ├── del_btn_press.png │ │ │ ├── ic_launcher.png │ │ │ ├── more_my_album.png │ │ │ ├── more_setting.png │ │ │ ├── emotions_bagcover.png │ │ │ ├── more_emoji_store.png │ │ │ ├── more_my_bank_card.png │ │ │ ├── more_my_favorite.png │ │ │ ├── bakchat_submenu_normal.png │ │ │ ├── bakchat_submenu_pressed.png │ │ │ ├── emotionstore_add_icon.png │ │ │ ├── emotionstore_emo_bg.9.png │ │ │ ├── emotionstore_emoji_icon.png │ │ │ ├── emotionstore_custom_icon.png │ │ │ ├── emotionstore_emo_bg_foucs.9.png │ │ │ ├── sns_shoot_emotion_icon_normal.png │ │ │ └── sns_shoot_keyboard_icon_normal.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── drawable │ │ │ ├── widgets_general_row_selector.xml │ │ │ └── widgets_emo_group_selector.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── baseview │ │ └── widget │ │ ├── BaseRowDescriptor.java │ │ ├── OnRowClickListener.java │ │ ├── RowActionEnum.java │ │ ├── RowDescriptor.java │ │ ├── RowProfileDescriptor.java │ │ └── GroupDescriptor.java ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── CustomTabs ├── shared │ └── .gitignore ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ ├── src │ │ └── main │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_arrow_back.png │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ └── activity_main.xml │ └── build.gradle ├── .gitignore └── build.gradle ├── KotlinLearning ├── app │ ├── .gitignore │ └── src │ │ ├── main │ │ ├── res │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── attrs.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── drawables.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── drawable │ │ │ │ ├── side_nav_bar.xml │ │ │ │ ├── ic_home_black_24dp.xml │ │ │ │ ├── ic_dashboard_black_24dp.xml │ │ │ │ ├── ic_info_black_24dp.xml │ │ │ │ ├── ic_notifications_black_24dp.xml │ │ │ │ └── ic_sync_black_24dp.xml │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_menu_send.xml │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ └── ic_menu_camera.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── menu │ │ │ │ ├── navigation_drawer.xml │ │ │ │ ├── menu_tabbed.xml │ │ │ │ ├── menu_scrolling.xml │ │ │ │ └── navigation.xml │ │ │ └── layout │ │ │ │ ├── item_detail.xml │ │ │ │ ├── content_basic.xml │ │ │ │ └── content_navigation_drawer.xml │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── why168 │ │ │ └── kotlinlearn │ │ │ ├── api │ │ │ ├── HttpResult.kt │ │ │ ├── SchedulerUtils.kt │ │ │ ├── IoMainScheduler.kt │ │ │ └── RxSubscriber2.kt │ │ │ └── event │ │ │ └── TokenEvent.kt │ │ └── test │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── kotlinlearn │ │ └── ExampleUnitTest.kt ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── README.md ├── CollapseView ├── settings.gradle ├── app │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ ├── dimens.xml │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── drawable │ │ ├── mm.jpg │ │ ├── w.jpg │ │ ├── ww.jpg │ │ ├── aaa.jpg │ │ ├── jjw.jpg │ │ ├── mmm.jpg │ │ ├── btn_an_xxh.png │ │ ├── textview_backgroundresource.xml │ │ └── circle_textview.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── layout │ │ ├── activity_main.xml │ │ ├── expand_2.xml │ │ ├── expand_1.xml │ │ └── expand_3.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── DataBinding ├── settings.gradle ├── app │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── dbinding_config.xml │ │ └── styles.xml │ │ ├── drawable │ │ └── ic_launcher.jpg │ │ ├── mipmap-hdpi │ │ └── ic_launcher.jpg │ │ ├── mipmap-mdpi │ │ └── ic_launcher.jpg │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.jpg │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.jpg │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.jpg │ │ ├── layout │ │ ├── activity_list.xml │ │ ├── activity_recycler_view.xml │ │ ├── view_stub_item.xml │ │ └── fragment_example.xml │ │ └── anim │ │ ├── activity_exit_anim.xml │ │ └── activity_enter_anim.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── HandlerCourse ├── settings.gradle ├── app │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ └── styles.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values-w820dp │ │ └── dimens.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── Notification ├── settings.gradle ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── raw │ │ │ │ └── actor.mp3 │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── qq.png │ │ │ │ ├── android_os.png │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── why168 │ │ │ └── notification │ │ │ └── ResultActivity.java │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── SwipeBack ├── settings.gradle ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── integers.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── colors.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ │ └── bga_sbl_shadow.9.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── inc_toolbar.xml │ │ │ ├── anim │ │ │ │ ├── activity_swipeback_enter.xml │ │ │ │ ├── activity_swipeback_exit.xml │ │ │ │ ├── activity_backward_enter.xml │ │ │ │ ├── activity_backward_exit.xml │ │ │ │ ├── activity_forward_enter.xml │ │ │ │ └── activity_forward_exit.xml │ │ │ └── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── java │ │ │ └── github │ │ │ └── why168 │ │ │ └── swipeback │ │ │ └── base │ │ │ └── SwipeBackApplication.java │ └── proguard-rules.pro ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── AndroidTestingStudy ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── app │ └── src │ ├── main │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── styles.xml │ │ └── dimens.xml │ └── test │ └── java │ └── com │ └── github │ └── why168 │ └── ExampleUnitTest.java ├── EditTextTagLayout ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── app │ └── src │ └── main │ └── res │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── drawable │ ├── background_with_radius_disabled.xml │ └── background_with_radius_primary_color.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── values │ ├── plurals.xml │ └── styles.xml │ └── layout │ └── view_shadow_text_view.xml ├── MultiChannelBuild ├── settings.gradle ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_logo.png │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ ├── item_content.xml │ │ │ │ └── item_menu.xml │ │ │ └── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── why168 │ │ │ └── multichannelbuild │ │ │ └── MainActivity.java │ └── AppKeyStore.jks ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── PermissionManage ├── permissiongen │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── kr │ │ │ └── co │ │ │ └── namee │ │ │ └── permissiongen │ │ │ ├── AllowPermissions.java │ │ │ ├── PermissionFail.java │ │ │ └── PermissionSuccess.java │ └── build.gradle ├── rxpermissions │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ └── src │ │ └── main │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── layout │ │ │ └── activity_contact.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── permissionmanage │ │ ├── PermissionsConstants.java │ │ └── ContactActivity.java └── build.gradle ├── FileStorageOperations ├── settings.gradle ├── app │ └── src │ │ ├── main │ │ └── res │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ └── test │ │ └── java │ │ └── io │ │ └── github │ │ └── why168 │ │ └── filestorageoperations │ │ └── ExampleUnitTest.kt └── gradle │ └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── VolleyStudy ├── settings.gradle ├── app │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ └── styles.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── layout │ │ └── activity_t1.xml ├── volley │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── github │ │ └── why168 │ │ └── volley │ │ └── SimpleNetwork.java ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore └── build.gradle ├── Art ├── BaseView-art.png ├── CustomTabs-art.gif ├── CollapseView-art.gif ├── DataBinding-art.gif ├── Notification-art.png └── SlidingPaneLayout-art.gif ├── dimens_sw ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ └── src │ │ ├── main │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ │ ├── drawable │ │ │ │ └── view_shape.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── menu │ │ │ │ └── menu_main.xml │ │ └── java │ │ │ └── github │ │ │ └── why168 │ │ │ └── adaptation │ │ │ └── BaseApplication.kt │ │ └── test │ │ └── java │ │ └── github │ │ └── why168 │ │ └── adaptation │ │ └── ExampleUnitTest.kt ├── dimesn_sw_lib │ └── build.gradle └── .gitignore ├── template.md └── .gitignore /InterView/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MVPStudy/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /OkHttpStudy/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BaseView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CustomTabs/shared/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /KotlinLearning/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MVPStudy/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CollapseView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /DataBinding/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /HandlerCourse/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /InterView/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Notification/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /SwipeBack/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /AndroidTestingStudy/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' -------------------------------------------------------------------------------- /EditTextTagLayout/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /KotlinLearning/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MultiChannelBuild/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /PermissionManage/permissiongen/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PermissionManage/rxpermissions/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CustomTabs/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':shared' 2 | -------------------------------------------------------------------------------- /FileStorageOperations/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /OkHttpStudy/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':okhttp3' 2 | -------------------------------------------------------------------------------- /VolleyStudy/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':volley' 2 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PermissionManage/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':permissiongen', ':rxpermissions' 2 | -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Art/BaseView-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Art/BaseView-art.png -------------------------------------------------------------------------------- /Art/CustomTabs-art.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Art/CustomTabs-art.gif -------------------------------------------------------------------------------- /Art/CollapseView-art.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Art/CollapseView-art.gif -------------------------------------------------------------------------------- /Art/DataBinding-art.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Art/DataBinding-art.gif -------------------------------------------------------------------------------- /Art/Notification-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Art/Notification-art.png -------------------------------------------------------------------------------- /dimens_sw/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='dimens_sw' 2 | include ':app' 3 | include ':dimesn_sw_lib' 4 | -------------------------------------------------------------------------------- /Art/SlidingPaneLayout-art.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Art/SlidingPaneLayout-art.gif -------------------------------------------------------------------------------- /OkHttpStudy/okhttp3/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BaseView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | BaseView 3 | 4 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DataBinding 3 | 4 | -------------------------------------------------------------------------------- /MultiChannelBuild/app/AppKeyStore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/AppKeyStore.jks -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | OkHttpStudy 3 | 4 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SwipeBack 3 | 4 | -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | VolleyStudy 3 | 4 | -------------------------------------------------------------------------------- /VolleyStudy/volley/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Volley 3 | 4 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CollapseView 3 | 4 | -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HandlerCourse 3 | 4 | -------------------------------------------------------------------------------- /Notification/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Notification 3 | 4 | -------------------------------------------------------------------------------- /BaseView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MVPStudy/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/mm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/mm.jpg -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/w.jpg -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/ww.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/ww.jpg -------------------------------------------------------------------------------- /CustomTabs/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DataBinding/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /InterView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Notification/app/src/main/res/raw/actor.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/raw/actor.mp3 -------------------------------------------------------------------------------- /OkHttpStudy/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SwipeBack/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /VolleyStudy/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/VolleyStudy/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dimens_sw/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-xhdpi/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-xhdpi/top.jpg -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/aaa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/aaa.jpg -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/jjw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/jjw.jpg -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/mmm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/mmm.jpg -------------------------------------------------------------------------------- /CollapseView/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FileStorageOperations 3 | 4 | -------------------------------------------------------------------------------- /HandlerCourse/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/HandlerCourse/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Notification/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PermissionManage/permissiongen/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | permissiongen 3 | 4 | -------------------------------------------------------------------------------- /PermissionManage/rxpermissions/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | rxpermissions 3 | 4 | -------------------------------------------------------------------------------- /KotlinLearning/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PermissionManage/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_00.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_01.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_02.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_03.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_04.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_05.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_06.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_07.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_08.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_09.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_10.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_11.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_12.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_13.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_14.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_15.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_16.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_17.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_18.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_19.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_20.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_21.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_22.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_23.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_24.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_25.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_26.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_27.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_28.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_29.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_30.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_31.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_32.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_33.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_34.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_35.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_36.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_37.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_38.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_39.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_40.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_41.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_42.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_43.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_44.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_45.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_46.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_47.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_48.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_49.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_50.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_51.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_52.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_53.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_54.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_55.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_56.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_57.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_58.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_59.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_60.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_61.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_62.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_63.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_64.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_65.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_66.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_67.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_68.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_69.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_70.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_71.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_72.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_73.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_74.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_75.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_76.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_77.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_78.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_79.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_80.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_81.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_82.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_83.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_84.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_85.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_86.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_87.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_88.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_89.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_90.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_91.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_92.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_93.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_94.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_95.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_96.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_97.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_98.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/smiley_99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/smiley_99.png -------------------------------------------------------------------------------- /EditTextTagLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /MultiChannelBuild/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-xxxhdpi/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-xxxhdpi/qq.png -------------------------------------------------------------------------------- /AndroidTestingStudy/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/del_btn_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/del_btn_nor.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/del_btn_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/del_btn_press.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/more_my_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/more_my_album.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/more_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/more_setting.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/btn_an_xxh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/drawable/btn_an_xxh.png -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/drawable/ic_arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/app/src/main/res/drawable/ic_arrow_back.png -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/drawable/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/app/src/main/res/drawable/ic_launcher.jpg -------------------------------------------------------------------------------- /FileStorageOperations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/mipmap-hdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/app/src/main/res/mipmap-hdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/mipmap-mdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/app/src/main/res/mipmap-mdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/mipmap-xhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/app/src/main/res/mipmap-xhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/drawable/bga_sbl_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/app/src/main/res/drawable/bga_sbl_shadow.9.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/SwipeBack/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/VolleyStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/VolleyStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/VolleyStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/emotions_bagcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/emotions_bagcover.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/more_emoji_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/more_emoji_store.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/more_my_bank_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/more_my_bank_card.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/more_my_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/more_my_favorite.png -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CollapseView/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/CustomTabs/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/mipmap-xxhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/app/src/main/res/mipmap-xxhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/mipmap-xxxhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/DataBinding/app/src/main/res/mipmap-xxxhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/HandlerCourse/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/HandlerCourse/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/HandlerCourse/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/HandlerCourse/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-xxxhdpi/android_os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-xxxhdpi/android_os.png -------------------------------------------------------------------------------- /Notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/Notification/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 200 4 | -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/VolleyStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/VolleyStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/HandlerCourse/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MVPStudy/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MVPStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/mipmap-xxxhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/src/main/res/mipmap-xxxhdpi/ic_logo.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- 1 | ## 1.xxx 2 | 3 | ### 介绍 4 | 5 | ### 参考资料 6 | 7 | ### 效果图 8 | 9 | ### 示例代码 10 | 11 | 12 | ```gradle 13 | 14 | ``` 15 | 16 | ```java 17 | 18 | ``` 19 | -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/bakchat_submenu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/bakchat_submenu_normal.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/bakchat_submenu_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/bakchat_submenu_pressed.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/emotionstore_add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/emotionstore_add_icon.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/emotionstore_emo_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/emotionstore_emo_bg.9.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/emotionstore_emoji_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/emotionstore_emoji_icon.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /InterView/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /InterView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/InterView/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/MultiChannelBuild/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OkHttpStudy/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/OkHttpStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/dimens_sw/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/emotionstore_custom_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/emotionstore_custom_icon.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /KotlinLearning/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/emotionstore_emo_bg_foucs.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/emotionstore_emo_bg_foucs.9.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/KotlinLearning/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/PermissionManage/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/sns_shoot_emotion_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/sns_shoot_emotion_icon_normal.png -------------------------------------------------------------------------------- /BaseView/app/src/main/res/mipmap-hdpi/sns_shoot_keyboard_icon_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/BaseView/app/src/main/res/mipmap-hdpi/sns_shoot_keyboard_icon_normal.png -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/EditTextTagLayout/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PermissionManage 3 | Enable camera 4 | 5 | -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/AndroidTestingStudy/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why168/AndroidProjects/HEAD/FileStorageOperations/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /InterView/README.md: -------------------------------------------------------------------------------- 1 | ## 12.InterView 2 | 3 | ### 介绍 4 | 5 | 整理一些面试的问题 6 | 7 | ### 参考资料 8 | 9 | ### 效果图 10 | 11 | ### 示例代码 12 | 13 | 14 | ```gradle 15 | 16 | ``` 17 | 18 | ```java 19 | 20 | ``` 21 | -------------------------------------------------------------------------------- /InterView/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | InterView 3 | pref_dream_text 4 | zzzZZZzzz 5 | 6 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/layout/inc_toolbar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/touch_feedback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /BaseView/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /InterView/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /Notification/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #6200EE 4 | #3700B3 5 | #03DAC5 6 | 7 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /Notification/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/drawable/view_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/drawable/background_with_radius_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/java/com/github/why168/mvpstudy/base/BasePresenter.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.mvpstudy.base; 2 | 3 | /** 4 | * @author Edwin.Wu 5 | * @version 2017/5/27 16:33 6 | * @since JDK1.8 7 | */ 8 | public interface BasePresenter { 9 | void start(); 10 | } 11 | -------------------------------------------------------------------------------- /MVPStudy/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat May 27 18:30:49 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /BaseView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Nov 02 18:57:09 CST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /CustomTabs/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /DataBinding/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 03 16:24:28 CST 2017 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /HandlerCourse/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Mar 18 22:51:12 CST 2018 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /InterView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun May 07 00:55:46 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /Notification/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 10 14:24:04 CST 2017 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /OkHttpStudy/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Mar 15 23:43:31 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /SwipeBack/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /VolleyStudy/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 14 16:06:56 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /dimens_sw/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat May 02 14:21:30 CST 2020 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.6.4-all.zip 7 | -------------------------------------------------------------------------------- /CollapseView/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Dec 02 15:55:00 CST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /EditTextTagLayout/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jun 06 16:35:29 CST 2018 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-4.4-all.zip 7 | -------------------------------------------------------------------------------- /KotlinLearning/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Feb 22 19:12:01 CST 2018 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /MultiChannelBuild/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Oct 26 15:49:19 CST 2017 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /PermissionManage/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Jan 20 11:25:00 CST 2018 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /AndroidTestingStudy/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Aug 01 17:04:51 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /FileStorageOperations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed May 16 21:40:21 CST 2018 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-4.4-all.zip 7 | -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #980e03 7 | 8 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/drawable/background_with_radius_primary_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/java/com/github/why168/mvpstudy/base/BaseView.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.mvpstudy.base; 2 | 3 | /** 4 | * BaseView 5 | * 6 | * @author Edwin.Wu 7 | * @version 2017/5/27 16:13 8 | * @since JDK1.8 9 | */ 10 | public interface BaseView { 11 | void setPresenter(T presenter); 12 | } 13 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #66000000 8 | 9 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dimens_sw/dimesn_sw_lib/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'java-library' 2 | apply plugin: 'kotlin' 3 | 4 | dependencies { 5 | implementation fileTree(dir: 'libs', include: ['*.jar']) 6 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 7 | } 8 | 9 | sourceCompatibility = "8" 10 | targetCompatibility = "8" 11 | -------------------------------------------------------------------------------- /BaseView/app/src/main/java/com/github/why168/baseview/widget/BaseRowDescriptor.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.baseview.widget; 2 | 3 | /** 4 | * BaseRowDescriptor 5 | * 6 | * @author Edwin.Wu 7 | * @version 2016/5/28 21:15 8 | * @since JDK1.8 9 | */ 10 | public class BaseRowDescriptor { 11 | public RowActionEnum action; 12 | } 13 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /VolleyStudy/volley/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/anim/activity_swipeback_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /BaseView/app/src/main/java/com/github/why168/baseview/widget/OnRowClickListener.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.baseview.widget; 2 | 3 | /** 4 | * 回调监听 5 | * 6 | * @author Edwin.Wu 7 | * @version 2016/5/27 22:15 8 | * @since JDK1.8 9 | */ 10 | public interface OnRowClickListener { 11 | void onRowClick(RowActionEnum actionEnum); 12 | } 13 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /InterView/app/src/main/java/com/github/why168/interview/constant/Constants.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.interview.constant; 2 | 3 | /** 4 | * Constants 5 | * 6 | * @author Edwin.Wu 7 | * @version 2017/5/10 00:09 8 | * @since JDK1.8 9 | */ 10 | public class Constants { 11 | public static String BROADCAST_DATA = "broadcast_data"; 12 | } 13 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/list_completed_touch_feedback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PermissionManage/permissiongen/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/anim/activity_swipeback_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BaseView/app/src/main/res/drawable/widgets_general_row_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/textview_backgroundresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/java/com/github/why168/kotlinlearn/api/HttpResult.kt: -------------------------------------------------------------------------------- 1 | package com.github.why168.kotlinlearn.api 2 | 3 | /** 4 | * 5 | * 6 | * @author Edwin.Wu 7 | * @version 2018/2/23 下午3:30 8 | * @since JDK1.8 9 | */ 10 | open class HttpResult { 11 | var status: Int = 0 12 | var msg: String? = null 13 | var data: T? = null 14 | } -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/layout/item_content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /PermissionManage/rxpermissions/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /BaseView/app/src/main/java/com/github/why168/baseview/widget/RowActionEnum.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.baseview.widget; 2 | 3 | /** 4 | * 点击item枚举 5 | * 6 | * @author Edwin.Wu 7 | * @version 2016/5/27 22:08 8 | * @since JDK1.8 9 | */ 10 | public enum RowActionEnum { 11 | MY_POSTS, ALBUM, FAVORITE, BANK_CARD, CUSTOM_ICON, EMOJI_ICON, SETTING 12 | } 13 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/java/com/github/why168/kotlinlearn/api/SchedulerUtils.kt: -------------------------------------------------------------------------------- 1 | package com.github.why168.kotlinlearn.api 2 | 3 | /** 4 | * 5 | * 6 | * @author Edwin.Wu 7 | * @version 2018/2/24 上午11:30 8 | * @since JDK1.8 9 | */ 10 | object SchedulerUtils { 11 | 12 | fun ioToMain(): IoMainScheduler { 13 | return IoMainScheduler() 14 | } 15 | } -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/java/com/github/why168/kotlinlearn/event/TokenEvent.kt: -------------------------------------------------------------------------------- 1 | package com.github.why168.kotlinlearn.event 2 | 3 | /** 4 | * 5 | * 6 | * @author Edwin.Wu 7 | * @version 2018/2/23 下午4:59 8 | * @since JDK1.8 9 | */ 10 | class TokenEvent { 11 | companion object { 12 | const val OUT_DATA = 1 13 | const val OTHER_DEVICE = 1 14 | } 15 | } -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/anim/activity_backward_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/anim/activity_backward_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/anim/activity_forward_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/anim/activity_forward_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/drawable/circle_textview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 10 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #FF2081 7 | #FFF 8 | #000 9 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/layout/activity_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/java/github/why168/adaptation/BaseApplication.kt: -------------------------------------------------------------------------------- 1 | package github.why168.adaptation 2 | 3 | import android.app.Application 4 | 5 | /** 6 | * @author Edwin.Wu edwin.wu05@gmail.com 7 | * @version 2020/5/2 2:41 PM 8 | * @since JDK1.8 9 | */ 10 | class BaseApplication : Application() { 11 | 12 | override fun onCreate() { 13 | super.onCreate() 14 | } 15 | 16 | } -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_done.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_menu.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_filter_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #455A64 4 | #263238 5 | #D50000 6 | 7 | #CCCCCC 8 | 9 | #CFD8DC 10 | 11 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /VolleyStudy/volley/src/main/java/com/github/why168/volley/SimpleNetwork.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.volley; 2 | 3 | /** 4 | * @author Edwin.Wu 5 | * @version 2017/3/15$ 15:26$ 6 | * @since JDK1.8 7 | */ 8 | public class SimpleNetwork implements Network { 9 | 10 | @Override 11 | public NetworkResponse performRequest(Request request) throws VolleyError { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /PermissionManage/app/src/main/java/com/github/why168/permissionmanage/PermissionsConstants.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.permissionmanage; 2 | 3 | /** 4 | * 权限常量 5 | * 6 | * @author Edwin.Wu 7 | * @version 2017/3/17$ 14:22$ 8 | * @since JDK1.8 9 | */ 10 | public class PermissionsConstants { 11 | public static final int WRITE_STORAGE_CODE = 0x01; 12 | public static final int CALL_PHONE_CODE = 0x02; 13 | } 14 | -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/menu/navigation_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/anim/activity_exit_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 13 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/layout/activity_recycler_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /BaseView/app/src/main/res/drawable/widgets_emo_group_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/anim/activity_enter_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_list.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/java/com/github/why168/kotlinlearn/api/IoMainScheduler.kt: -------------------------------------------------------------------------------- 1 | package com.github.why168.kotlinlearn.api 2 | 3 | import io.reactivex.android.schedulers.AndroidSchedulers 4 | import io.reactivex.schedulers.Schedulers 5 | 6 | /** 7 | * 8 | * 9 | * @author Edwin.Wu 10 | * @version 2018/2/24 上午11:32 11 | * @since JDK1.8 12 | */ 13 | class IoMainScheduler : BaseScheduler(Schedulers.io(), AndroidSchedulers.mainThread()) -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable/ic_dashboard_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /Notification/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /MultiChannelBuild/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/values/dbinding_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | java.lang.CharSequence 9 | 10 | 14 | 15 | java.lang.CharSequence 16 | -------------------------------------------------------------------------------- /InterView/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CustomTabs/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /HandlerCourse/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /OkHttpStudy/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /VolleyStudy/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /BaseView/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/layout/view_stub_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/java/com/github/why168/kotlinlearn/api/RxSubscriber2.kt: -------------------------------------------------------------------------------- 1 | package com.github.why168.kotlinlearn.api 2 | 3 | import io.reactivex.subscribers.DefaultSubscriber 4 | 5 | /** 6 | * 7 | * 8 | * @author Edwin.Wu 9 | * @version 2018/2/23 下午6:18 10 | * @since JDK1.8 11 | */ 12 | abstract class RxSubscriber2> : DefaultSubscriber() { 13 | 14 | abstract fun onResponse(t: T) 15 | 16 | abstract fun onFailure(msg: String) 17 | } -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/layout/activity_contact.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /PermissionManage/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /FileStorageOperations/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_statistics.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /dimens_sw/app/src/test/java/github/why168/adaptation/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package github.why168.adaptation 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_statistics_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /PermissionManage/app/src/main/java/com/github/why168/permissionmanage/ContactActivity.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.permissionmanage; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class ContactActivity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_contact); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/layout/item_detail.xml: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/test/java/com/github/why168/kotlinlearn/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.github.why168.kotlinlearn 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/menu/menu_tabbed.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_check_circle_24dp.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/menu/menu_scrolling.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /PermissionManage/permissiongen/src/main/java/kr/co/namee/permissiongen/AllowPermissions.java: -------------------------------------------------------------------------------- 1 | package kr.co.namee.permissiongen; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * Created by namee on 2015. 11. 17.. 10 | */ 11 | @Target(ElementType.TYPE) 12 | @Retention(RetentionPolicy.RUNTIME ) 13 | public @interface AllowPermissions { 14 | String[] value(); 15 | } 16 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 7 | 24dp 8 | 12dp 9 | 56dp 10 | 16dp 11 | 12 | -------------------------------------------------------------------------------- /FileStorageOperations/app/src/test/java/io/github/why168/filestorageoperations/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package io.github.why168.filestorageoperations 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /AndroidTestingStudy/app/src/test/java/com/github/why168/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.github.why168; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /InterView/app/src/main/res/layout-v17/my_daydream.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /InterView/app/src/test/java/com/github/why168/interview/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.interview; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_verified_user_24dp.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /SwipeBack/app/src/main/java/github/why168/swipeback/base/SwipeBackApplication.java: -------------------------------------------------------------------------------- 1 | package github.why168.swipeback.base; 2 | 3 | import android.app.Application; 4 | 5 | import github.why168.swipeback.SwipeBackManager; 6 | 7 | /** 8 | * BaseApplication 9 | * 10 | * @author Edwin.Wu 11 | * @version 2017/2/7 17:26 12 | * @since JDK1.8 13 | */ 14 | public class SwipeBackApplication extends Application { 15 | @Override 16 | public void onCreate() { 17 | super.onCreate(); 18 | SwipeBackManager.getInstance().init(this); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /OkHttpStudy/app/src/test/java/com/github/why168/okhttpstudy/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.okhttpstudy; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.assertEquals; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /BaseView/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /CustomTabs/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /DataBinding/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /MVPStudy/app/src/main/res/drawable/ic_statistics_100dp.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /SwipeBack/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /CollapseView/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /Notification/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /BaseView/app/src/main/java/com/github/why168/baseview/widget/RowDescriptor.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.baseview.widget; 2 | 3 | /** 4 | * RowDescriptor 5 | * 6 | * @author Edwin.Wu 7 | * @version 2016/5/27 22:46 8 | * @since JDK1.8 9 | */ 10 | public class RowDescriptor extends BaseRowDescriptor { 11 | public int iconResId; 12 | public String label; 13 | 14 | public RowDescriptor(int iconResId, String label, RowActionEnum action) { 15 | this.iconResId = iconResId; 16 | this.label = label; 17 | this.action = action; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /MultiChannelBuild/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks -------------------------------------------------------------------------------- /PermissionManage/permissiongen/src/main/java/kr/co/namee/permissiongen/PermissionFail.java: -------------------------------------------------------------------------------- 1 | package kr.co.namee.permissiongen; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * Created by namee on 2015. 11. 18.. 10 | * Register a method invoked when permission requests are denied. 11 | */ 12 | @Target(ElementType.METHOD) 13 | @Retention(RetentionPolicy.RUNTIME) 14 | public @interface PermissionFail { 15 | int requestCode(); 16 | } 17 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /dimens_sw/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | 36 | # Keystore files 37 | *.jks 38 | dimen_res/ -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/drawable/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /PermissionManage/permissiongen/src/main/java/kr/co/namee/permissiongen/PermissionSuccess.java: -------------------------------------------------------------------------------- 1 | package kr.co.namee.permissiongen; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * Created by namee on 2015. 11. 17.. 10 | * Register a method invoked when permission requests are succeeded. 11 | */ 12 | @Retention(RetentionPolicy.RUNTIME) 13 | @Target(ElementType.METHOD) 14 | public @interface PermissionSuccess { 15 | int requestCode(); 16 | } 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin 13 | gen 14 | out 15 | 16 | # Gradle files 17 | .gradle 18 | build 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio Navigation editor temp files 30 | .navigation 31 | 32 | # Android Studio captures folder 33 | captures 34 | 35 | # Intellij 36 | *.iml 37 | .idea 38 | -------------------------------------------------------------------------------- /Notification/app/src/main/java/com/github/why168/notification/ResultActivity.java: -------------------------------------------------------------------------------- 1 | package com.github.why168.notification; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | /** 7 | * 点击跳转到这里 8 | * 9 | * @author Edwin.Wu 10 | * @version 2017/3/31 18:37 11 | * @since JDK1.8 12 | */ 13 | public class ResultActivity extends AppCompatActivity { 14 | 15 | @Override 16 | protected void onCreate(Bundle savedInstanceState) { 17 | super.onCreate(savedInstanceState); 18 | setContentView(R.layout.activity_result); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /DataBinding/app/src/main/res/layout/fragment_example.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %d rating 5 | %d ratings 6 | 7 | 8 | %s Participant 9 | %s Participants 10 | 11 | 12 | %d more word 13 | %d more words 14 | 15 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/layout/view_shadow_text_view.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BaseView/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /CustomTabs/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /InterView/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /OkHttpStudy/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /SwipeBack/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /VolleyStudy/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /CollapseView/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /CollapseView/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /Notification/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /MultiChannelBuild/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 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /KotlinLearning/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | 16dp 5 | 16dp 6 | 8dp 7 | 176dp 8 | 180dp 9 | 16dp 10 | 8dp 11 | 200dp 12 | 13 | -------------------------------------------------------------------------------- /dimens_sw/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 屏幕适配 3 | Settings 4 | 5 | First Fragment 6 | Second Fragment 7 | Next 8 | Previous 9 | 10 | Hello first fragment 11 | Hello second fragment. Arg: %1$s 12 | 13 | -------------------------------------------------------------------------------- /EditTextTagLayout/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 | -------------------------------------------------------------------------------- /HandlerCourse/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio captures folder 30 | captures/ 31 | 32 | # Intellij 33 | *.iml 34 | .idea 35 | <<<<<<< Updated upstream 36 | ======= 37 | 38 | # Keystore files 39 | *.jks 40 | >>>>>>> Stashed changes 41 | -------------------------------------------------------------------------------- /InterView/app/src/main/res/layout/activity_life.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 |