├── HireMe ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── logo.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── logo.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── logo.png │ │ ├── moren_g.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── logo.png │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── icon_main_mine_normal.png │ │ ├── icon_main_news_normal.png │ │ ├── icon_main_mine_selected.png │ │ ├── icon_main_news_selected.png │ │ ├── icon_main_video_normal.png │ │ ├── icon_main_video_selected.png │ │ ├── icon_main_discover_normal.png │ │ └── icon_main_discover_selected.png │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── colors.xml ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── MiShop ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-xxhdpi │ │ └── app_icon.png │ │ ├── drawable-xxhdpi │ │ ├── icon_main_home_normal.png │ │ ├── icon_main_mine_normal.png │ │ ├── icon_main_home_selected.png │ │ ├── icon_main_mine_selected.png │ │ ├── icon_main_category_normal.png │ │ ├── icon_main_discover_normal.png │ │ ├── icon_main_category_selected.png │ │ └── icon_main_discover_selected.png │ │ └── values │ │ ├── dimens.xml │ │ └── strings.xml ├── settings.gradle ├── MiShop_demo2.gif ├── MiShop_offical_demo.png ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── TouTiao ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── image_small_default.png │ │ ├── ic_category_right_edge.png │ │ ├── icon_main_mine_normal.png │ │ ├── icon_main_mine_selected.png │ │ ├── icon_main_news_normal.png │ │ ├── icon_main_news_selected.png │ │ ├── icon_main_video_normal.png │ │ ├── ic_category_expand_normal.png │ │ ├── icon_main_discover_normal.png │ │ ├── icon_main_video_selected.png │ │ ├── ic_category_expand_pressed.png │ │ └── icon_main_discover_selected.png │ │ └── drawable │ │ ├── bg_category_indicator.xml │ │ ├── bg_category_indicator_dark.xml │ │ └── ic_category_left_edge.xml ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── todoapp ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── 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 │ │ ├── drawable │ │ └── touch_feedback.xml │ │ └── values │ │ └── colors.xml ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── NetSpeed ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ ├── colors.xml │ │ └── dimens.xml │ │ ├── drawable-hdpi │ │ ├── wifi.png │ │ ├── inout.png │ │ ├── option.png │ │ ├── select.png │ │ ├── checked.png │ │ ├── uncheck.png │ │ ├── unselect.png │ │ ├── progress.9.png │ │ └── progress_bg.9.png │ │ ├── drawable-xxhdpi │ │ └── icon.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 │ │ └── drawable │ │ ├── normal.xml │ │ ├── pressed.xml │ │ ├── floatwindow.xml │ │ └── thumb.xml ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── TianTianNews ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── image_small_default.png │ │ ├── ic_category_right_edge.png │ │ ├── icon_main_mine_normal.png │ │ ├── icon_main_mine_selected.png │ │ ├── icon_main_news_normal.png │ │ ├── icon_main_news_selected.png │ │ ├── icon_main_video_normal.png │ │ ├── ic_category_expand_normal.png │ │ ├── icon_main_discover_normal.png │ │ ├── icon_main_video_selected.png │ │ ├── ic_category_expand_pressed.png │ │ └── icon_main_discover_selected.png │ │ └── drawable │ │ ├── bg_category_indicator.xml │ │ ├── bg_category_indicator_dark.xml │ │ └── ic_category_left_edge.xml ├── pulltorefresh │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── drawable-hdpi │ │ ├── indicator_arrow.png │ │ ├── default_ptr_flip.png │ │ └── default_ptr_rotate.png │ │ ├── drawable-mdpi │ │ ├── indicator_arrow.png │ │ ├── default_ptr_flip.png │ │ └── default_ptr_rotate.png │ │ ├── drawable-xhdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ │ ├── values │ │ └── ids.xml │ │ └── values-zh │ │ └── pull_refresh_strings.xml ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── BlockExplorer ├── 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 │ │ ├── drawable-xxhdpi │ │ ├── icon_main_mine_normal.png │ │ ├── icon_main_news_normal.png │ │ ├── icon_main_video_normal.png │ │ ├── icon_main_mine_selected.png │ │ ├── icon_main_news_selected.png │ │ ├── icon_main_video_selected.png │ │ ├── icon_main_discover_normal.png │ │ └── icon_main_discover_selected.png │ │ ├── values │ │ └── colors.xml │ │ └── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .idea │ └── caches │ │ └── build_file_checksums.ser └── .gitignore ├── FragmentBasics ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ ├── colors.xml │ │ └── dimens.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 ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── QuickBloxDemo2 ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── libs │ │ ├── qb-gson2.2.1.jar │ │ ├── minidns-0.1.7.jar │ │ ├── smack-im-4.1.6.jar │ │ ├── smack-tcp-4.1.6.jar │ │ ├── jxmpp-core-0.4.2.jar │ │ ├── smack-core-4.1.6.jar │ │ ├── smack-android-4.1.6.jar │ │ ├── jxmpp-util-cache-0.4.2.jar │ │ ├── smack-extensions-4.1.6.jar │ │ ├── libjingle_peerconnection.jar │ │ ├── smack-experimental-4.1.6.jar │ │ ├── smack-sasl-provided-4.1.6.jar │ │ └── smack-resolver-minidns-4.1.6.jar │ └── src │ │ └── main │ │ ├── res │ │ ├── raw │ │ │ └── beep.wav │ │ ├── drawable-hdpi │ │ │ ├── ic_call.png │ │ │ ├── ic_edit.png │ │ │ ├── ic_mic_off.png │ │ │ ├── ic_mic_on.png │ │ │ ├── ic_call_end.png │ │ │ ├── ic_dynamic_on.png │ │ │ ├── ic_mic_off_sm.png │ │ │ ├── ic_videocam.png │ │ │ ├── ic_call_end_sm.png │ │ │ ├── ic_dynamic_off.png │ │ │ ├── ic_exit_to_app.png │ │ │ ├── ic_videocam_off.png │ │ │ ├── ic_dynamic_off_sm.png │ │ │ ├── ic_dynamic_on_sm.png │ │ │ ├── ic_switch_camera.png │ │ │ ├── ic_videocam_off_sm.png │ │ │ └── ic_switch_camera_sm.png │ │ ├── drawable-mdpi │ │ │ ├── ic_call.png │ │ │ ├── ic_edit.png │ │ │ ├── ic_mic_off.png │ │ │ ├── ic_mic_on.png │ │ │ ├── ic_call_end.png │ │ │ ├── ic_dynamic_on.png │ │ │ ├── ic_mic_off_sm.png │ │ │ ├── ic_videocam.png │ │ │ ├── ic_call_end_sm.png │ │ │ ├── ic_dynamic_off.png │ │ │ ├── ic_exit_to_app.png │ │ │ ├── ic_videocam_off.png │ │ │ ├── ic_dynamic_off_sm.png │ │ │ ├── ic_dynamic_on_sm.png │ │ │ ├── ic_switch_camera.png │ │ │ ├── ic_videocam_off_sm.png │ │ │ └── ic_switch_camera_sm.png │ │ ├── drawable │ │ │ ├── ic_noavatar.png │ │ │ └── ic_user_camera_off.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_call.png │ │ │ ├── ic_edit.png │ │ │ ├── ic_call_end.png │ │ │ ├── ic_mic_off.png │ │ │ ├── ic_mic_on.png │ │ │ ├── ic_videocam.png │ │ │ ├── ic_dynamic_on.png │ │ │ ├── ic_mic_off_sm.png │ │ │ ├── ic_call_end_sm.png │ │ │ ├── ic_dynamic_off.png │ │ │ ├── ic_dynamic_on_sm.png │ │ │ ├── ic_exit_to_app.png │ │ │ ├── ic_switch_camera.png │ │ │ ├── ic_videocam_off.png │ │ │ ├── ic_dynamic_off_sm.png │ │ │ ├── ic_videocam_off_sm.png │ │ │ └── ic_switch_camera_sm.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_call.png │ │ │ ├── ic_edit.png │ │ │ ├── ic_mic_off.png │ │ │ ├── ic_mic_on.png │ │ │ ├── ic_call_end.png │ │ │ ├── ic_videocam.png │ │ │ ├── ic_call_end_sm.png │ │ │ ├── ic_dynamic_off.png │ │ │ ├── ic_dynamic_on.png │ │ │ ├── ic_exit_to_app.png │ │ │ ├── ic_mic_off_sm.png │ │ │ ├── ic_videocam_off.png │ │ │ ├── ic_dynamic_off_sm.png │ │ │ ├── ic_dynamic_on_sm.png │ │ │ ├── ic_switch_camera.png │ │ │ ├── ic_switch_camera_sm.png │ │ │ └── ic_videocam_off_sm.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 │ │ │ └── styles.xml │ │ ├── jniLibs │ │ ├── x86 │ │ │ └── libjingle_peerconnection_so.so │ │ ├── x86_64 │ │ │ └── libjingle_peerconnection_so.so │ │ ├── arm64-v8a │ │ │ └── libjingle_peerconnection_so.so │ │ └── armeabi-v7a │ │ │ └── libjingle_peerconnection_so.so │ │ └── java │ │ └── com │ │ ├── quickblox │ │ ├── chat │ │ │ ├── listeners │ │ │ │ ├── QBSubscriptionListener.java │ │ │ │ ├── QBVideoChatSignalingManagerListener.java │ │ │ │ └── QBPrivacyListListener.java │ │ │ └── QBSignaling.java │ │ └── core │ │ │ ├── helper │ │ │ ├── StringUtils.java │ │ │ └── CollectionUtils.java │ │ │ └── exception │ │ │ ├── BaseServiceException.java │ │ │ └── QBRuntimeException.java │ │ └── rainsong │ │ └── quickbloxdemo2 │ │ └── fragment │ │ └── OnCallEventsController.java ├── settings.gradle ├── .gitignore └── gradle │ └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── TianTianNews2 ├── app │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── image_small_default.png │ │ ├── ic_category_right_edge.png │ │ ├── icon_main_mine_normal.png │ │ ├── icon_main_news_normal.png │ │ ├── icon_main_video_normal.png │ │ ├── icon_main_mine_selected.png │ │ ├── icon_main_news_selected.png │ │ ├── icon_main_video_selected.png │ │ ├── ic_category_expand_normal.png │ │ ├── ic_category_expand_pressed.png │ │ ├── icon_main_discover_normal.png │ │ └── icon_main_discover_selected.png │ │ └── drawable │ │ ├── bg_category_indicator.xml │ │ ├── bg_category_indicator_dark.xml │ │ └── ic_category_left_edge.xml ├── settings.gradle ├── .idea │ └── copyright │ │ └── profiles_settings.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties └── .gitignore ├── wetracks └── 1 │ ├── index.php │ └── app.conf ├── TianXingNews ├── README.md └── TianXingNews │ ├── ic_launcher-web.png │ ├── libs │ ├── gson-2.2.4.jar │ ├── ApiStoreSDK1.0.4.jar │ ├── android-support-v4.jar │ └── universal-image-loader-1.9.5.jar │ ├── res │ ├── drawable-xhdpi │ │ ├── title.png │ │ ├── ic_launcher.png │ │ ├── default_round_head.png │ │ ├── right_drawer_normal.png │ │ ├── refreshicon_titlebar.png │ │ ├── right_drawer_pressed.png │ │ ├── ic_category_right_edge.png │ │ ├── ic_category_expand_normal.png │ │ └── ic_category_expand_pressed.png │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── values │ │ └── attrs.xml │ ├── drawable-xxhdpi │ │ ├── ic_launcher.png │ │ └── image_small_default.png │ └── drawable │ │ ├── bg_titlebar_main.xml │ │ ├── bg_category_indicator.xml │ │ ├── bg_category_indicator_dark.xml │ │ ├── ic_category_left_edge.xml │ │ ├── bg_head_normal.xml │ │ ├── bg_head_pressed.xml │ │ ├── bg_head.xml │ │ └── right_drawer.xml │ └── .settings │ └── org.eclipse.jdt.core.prefs ├── WeJoke ├── WeJoke │ ├── WeJoke.apk │ ├── ic_launcher-web.png │ ├── libs │ │ ├── gson-2.2.4.jar │ │ ├── android-support-v4.jar │ │ └── universal-image-loader-1.9.5.jar │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_stub.png │ │ │ ├── ic_empty.png │ │ │ ├── ic_error.png │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_empty.png │ │ │ ├── ic_error.png │ │ │ ├── ic_stub.png │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ └── menu │ │ │ └── joke.xml │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ └── src │ │ └── com │ │ └── rainsong │ │ └── wejoke │ │ └── JokeEntity.java └── library_PullToRefresh │ ├── res │ ├── drawable-hdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── drawable-mdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── drawable-xhdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── values │ │ └── ids.xml │ ├── values-zh │ │ └── pull_refresh_strings.xml │ ├── values-ja │ │ └── pull_refresh_strings.xml │ └── values-ko │ │ └── pull_refresh_strings.xml │ └── .settings │ └── org.eclipse.jdt.core.prefs ├── HTTPDemo ├── ic_launcher-web.png ├── lint.xml ├── libs │ └── android-support-v4.jar ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values │ │ ├── dimens.xml │ │ └── strings.xml │ ├── menu │ │ └── main.xml │ └── values-sw720dp-land │ │ └── dimens.xml ├── src │ └── com │ │ └── neolee │ │ └── httpdemo │ │ └── MainActivity.java ├── gen │ └── com │ │ └── neolee │ │ └── httpdemo │ │ └── BuildConfig.java └── .settings │ └── org.eclipse.jdt.core.prefs ├── MultiLoc ├── ic_launcher-web.png ├── libs │ ├── locSDK_3.1.jar │ ├── armeabi │ │ ├── liblocSDK3.so │ │ └── libBaiduMapSDK_v3_2_0_15.so │ ├── android-support-v4.jar │ └── baidumapapi_v3_2_0.jar ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── icon_mark.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values │ │ ├── dimens.xml │ │ └── strings.xml │ ├── menu │ │ └── main.xml │ └── values-sw720dp-land │ │ └── dimens.xml ├── src │ └── com │ │ └── rainsong │ │ └── multiloc │ │ └── MainActivity.java └── .settings │ └── org.eclipse.jdt.core.prefs ├── Tracking ├── libs │ ├── locSDK_3.1.jar │ ├── armeabi │ │ ├── liblocSDK3.so │ │ ├── libvi_voslib.so │ │ └── libapp_BaiduMapApplib_v2_1_1.so │ └── baidumapapi_v2_1_1.jar ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ └── drawable-mdpi │ │ └── ic_launcher.png └── src │ └── org │ └── liaops │ └── tracking │ └── Main.java ├── Demo └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-ldpi │ └── ic_launcher.png │ └── drawable-mdpi │ └── ic_launcher.png ├── ZhihuDaily2 ├── ZhihuDaily │ ├── bin │ │ ├── classes.dex │ │ ├── resources.ap_ │ │ ├── ZhihuDaily.apk │ │ ├── classes │ │ │ └── com │ │ │ │ ├── rainsong │ │ │ │ └── zhihudaily │ │ │ │ │ ├── R.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$menu.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── util │ │ │ │ │ ├── Rsa.class │ │ │ │ │ ├── DateUtils.class │ │ │ │ │ ├── GsonUtils.class │ │ │ │ │ ├── ListUtils.class │ │ │ │ │ └── ZhihuUtils.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── ZhihuApplication.class │ │ │ │ │ ├── db │ │ │ │ │ ├── DatabaseHelper.class │ │ │ │ │ └── NewsDataSource.class │ │ │ │ │ ├── adapter │ │ │ │ │ ├── NewsAdapter.class │ │ │ │ │ └── NewsAdapter$ViewHolder.class │ │ │ │ │ ├── activity │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ ├── HireDetailsActivity.class │ │ │ │ │ └── HireDetailsActivity$MyStringCallback.class │ │ │ │ │ ├── entity │ │ │ │ │ ├── NewsListEntity.class │ │ │ │ │ ├── ListJobbersResponseInfo.class │ │ │ │ │ ├── NewsListEntity$NewsEntity.class │ │ │ │ │ ├── ListJobbersResponseInfo$DataEntity.class │ │ │ │ │ └── ListJobbersResponseInfo$RetDataEntity.class │ │ │ │ │ └── fragment │ │ │ │ │ ├── NewsListFragment.class │ │ │ │ │ ├── NewsListFragment$1.class │ │ │ │ │ ├── NewsListFragment$2.class │ │ │ │ │ ├── NewsListFragment$3.class │ │ │ │ │ ├── NewsListFragment$FirstStringCallback.class │ │ │ │ │ └── NewsListFragment$MoreStringCallback.class │ │ │ │ ├── handmark │ │ │ │ └── pulltorefresh │ │ │ │ │ └── library │ │ │ │ │ ├── R.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ └── R$styleable.class │ │ │ │ └── hiremeplz │ │ │ │ └── hireme │ │ │ │ └── bean │ │ │ │ ├── DetailsInfo.class │ │ │ │ ├── DetailsInfo$MsgEntity.class │ │ │ │ └── DetailsInfo$DataEntity.class │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_small_default.png │ │ └── dexedLibs │ │ │ ├── gson-2.2.4-1950fbfc95cc453e0e00fac5114e05a1.jar │ │ │ ├── okio-1.8.0-4a4378b2cc9c4fc6fbc232b5099d13eb.jar │ │ │ ├── okhttp-3.3.1-54f74a65af73d7833db93a9f324b1561.jar │ │ │ ├── android-support-v4-a10ff292177677e12db02abd0519ff3b.jar │ │ │ ├── okhttputils-2_6_1-050cc4dba457781e504727283a6a82b0.jar │ │ │ ├── library_pulltorefresh-b52c9a10bccdacc90ebdbba695ff2aa7.jar │ │ │ └── universal-image-loader-1.9.5-1029b620a22e7f0a4446fd0bb1988ba2.jar │ ├── ic_launcher-web.png │ ├── libs │ │ ├── gson-2.2.4.jar │ │ ├── okio-1.8.0.jar │ │ ├── okhttp-3.3.1.jar │ │ ├── android-support-v4.jar │ │ ├── okhttputils-2_6_1.jar │ │ └── universal-image-loader-1.9.5.jar │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── image_small_default.png │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── gen │ │ └── com │ │ │ └── rainsong │ │ │ └── zhihudaily │ │ │ └── BuildConfig.java │ └── src │ │ └── com │ │ └── rainsong │ │ └── zhihudaily │ │ └── util │ │ └── ListUtils.java └── library_PullToRefresh │ ├── bin │ ├── library_pulltorefresh.jar │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── default_ptr_flip.png │ │ │ ├── indicator_arrow.png │ │ │ └── default_ptr_rotate.png │ │ │ ├── drawable-mdpi │ │ │ ├── default_ptr_flip.png │ │ │ ├── indicator_arrow.png │ │ │ └── default_ptr_rotate.png │ │ │ └── drawable-xhdpi │ │ │ ├── indicator_arrow.png │ │ │ ├── default_ptr_flip.png │ │ │ └── default_ptr_rotate.png │ └── classes │ │ └── com │ │ └── handmark │ │ └── pulltorefresh │ │ └── library │ │ ├── R.class │ │ ├── R$anim.class │ │ ├── R$attr.class │ │ ├── R$id.class │ │ ├── R$dimen.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── BuildConfig.class │ │ ├── R$drawable.class │ │ ├── R$styleable.class │ │ ├── ILoadingLayout.class │ │ ├── IPullToRefresh.class │ │ ├── OverscrollHelper.class │ │ ├── internal │ │ ├── Utils.class │ │ ├── ViewCompat.class │ │ ├── LoadingLayout.class │ │ ├── FlipLoadingLayout.class │ │ ├── IndicatorLayout.class │ │ ├── ViewCompat$SDK11.class │ │ ├── ViewCompat$SDK16.class │ │ ├── RotateLoadingLayout.class │ │ └── EmptyViewMethodAccessor.class │ │ ├── LoadingLayoutProxy.class │ │ ├── PullToRefreshBase.class │ │ ├── PullToRefreshBase$1.class │ │ ├── PullToRefreshBase$2.class │ │ ├── PullToRefreshBase$3.class │ │ ├── PullToRefreshGridView.class │ │ ├── PullToRefreshListView.class │ │ ├── PullToRefreshWebView.class │ │ ├── PullToRefreshBase$Mode.class │ │ ├── PullToRefreshBase$State.class │ │ ├── PullToRefreshScrollView.class │ │ ├── PullToRefreshWebView$1.class │ │ ├── PullToRefreshWebView$2.class │ │ ├── PullToRefreshAdapterViewBase.class │ │ ├── extras │ │ ├── PullToRefreshWebView2.class │ │ ├── SoundPullEventListener.class │ │ └── PullToRefreshWebView2$JsValueCallback.class │ │ ├── PullToRefreshBase$Orientation.class │ │ ├── PullToRefreshExpandableListView.class │ │ ├── PullToRefreshBase$AnimationStyle.class │ │ ├── PullToRefreshHorizontalScrollView.class │ │ ├── PullToRefreshBase$OnRefreshListener.class │ │ ├── PullToRefreshBase$OnRefreshListener2.class │ │ ├── PullToRefreshBase$OnPullEventListener.class │ │ ├── PullToRefreshBase$SmoothScrollRunnable.class │ │ ├── PullToRefreshGridView$InternalGridView.class │ │ ├── PullToRefreshListView$InternalListView.class │ │ ├── PullToRefreshWebView$InternalWebViewSDK9.class │ │ ├── PullToRefreshBase$OnLastItemVisibleListener.class │ │ ├── PullToRefreshGridView$InternalGridViewSDK9.class │ │ ├── PullToRefreshListView$InternalListViewSDK9.class │ │ ├── PullToRefreshScrollView$InternalScrollViewSDK9.class │ │ ├── PullToRefreshBase$OnSmoothScrollFinishedListener.class │ │ └── PullToRefreshExpandableListView$InternalExpandableListView.class │ ├── res │ ├── drawable-hdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── drawable-mdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── drawable-xhdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── values │ │ └── ids.xml │ └── values-zh │ │ └── pull_refresh_strings.xml │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ └── gen │ └── com │ └── handmark │ └── pulltorefresh │ └── library │ └── BuildConfig.java ├── GPSDemo ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ └── values │ │ └── strings.xml ├── src │ └── com │ │ └── neolee │ │ └── gpsdemo │ │ └── GPSDemoActivity.java ├── gen │ └── com │ │ └── neolee │ │ └── gpsdemo │ │ └── BuildConfig.java └── .settings │ └── org.eclipse.jdt.core.prefs ├── ZhihuDaily ├── ZhihuDaily │ ├── ic_launcher-web.png │ ├── libs │ │ ├── gson-2.2.4.jar │ │ ├── android-support-v4.jar │ │ └── universal-image-loader-1.9.5.jar │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── image_small_default.png │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ └── src │ │ └── com │ │ └── rainsong │ │ └── zhihudaily │ │ └── util │ │ └── ListUtils.java └── library_PullToRefresh │ ├── res │ ├── drawable-hdpi │ │ ├── indicator_arrow.png │ │ ├── default_ptr_flip.png │ │ └── default_ptr_rotate.png │ ├── drawable-mdpi │ │ ├── indicator_arrow.png │ │ ├── default_ptr_flip.png │ │ └── default_ptr_rotate.png │ ├── drawable-xhdpi │ │ ├── default_ptr_flip.png │ │ ├── indicator_arrow.png │ │ └── default_ptr_rotate.png │ ├── values │ │ └── ids.xml │ └── values-zh │ │ └── pull_refresh_strings.xml │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ └── gen │ └── com │ └── handmark │ └── pulltorefresh │ └── library │ └── BuildConfig.java ├── GPSTracker ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ └── values │ │ └── strings.xml └── src │ └── com │ └── neolee │ └── gpstracker │ └── MainService.java ├── MyFirstApp └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-ldpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── ContactsDemo └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-ldpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── SocketClientTest ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ └── values │ │ └── strings.xml └── src │ └── com │ └── neolee │ └── socketclienttest │ └── SocketClientTestActivity.java └── VideoPlayerDemo └── res ├── drawable-hdpi └── ic_launcher.png ├── drawable-ldpi └── ic_launcher.png ├── drawable-mdpi └── ic_launcher.png └── values └── strings.xml /HireMe/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MiShop/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TouTiao/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /todoapp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NetSpeed/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TianTianNews/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BlockExplorer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /FragmentBasics/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HireMe/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /MiShop/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /NetSpeed/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /QuickBloxDemo2/.idea/.name: -------------------------------------------------------------------------------- 1 | QuickBloxDemo2 -------------------------------------------------------------------------------- /QuickBloxDemo2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TianTianNews2/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TouTiao/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /todoapp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TianTianNews2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /BlockExplorer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /FragmentBasics/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /QuickBloxDemo2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TianTianNews/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':pulltorefresh' 2 | -------------------------------------------------------------------------------- /wetracks/1/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /MiShop/MiShop_demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/MiShop_demo2.gif -------------------------------------------------------------------------------- /TianXingNews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/README.md -------------------------------------------------------------------------------- /WeJoke/WeJoke/WeJoke.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/WeJoke.apk -------------------------------------------------------------------------------- /HTTPDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /MultiLoc/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/ic_launcher-web.png -------------------------------------------------------------------------------- /MultiLoc/libs/locSDK_3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/libs/locSDK_3.1.jar -------------------------------------------------------------------------------- /Tracking/libs/locSDK_3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/libs/locSDK_3.1.jar -------------------------------------------------------------------------------- /MiShop/MiShop_offical_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/MiShop_offical_demo.png -------------------------------------------------------------------------------- /HTTPDemo/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /HireMe/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MiShop/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /NetSpeed/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NetSpeed 3 | 4 | -------------------------------------------------------------------------------- /TouTiao/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/ic_launcher-web.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /todoapp/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /MultiLoc/libs/armeabi/liblocSDK3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/libs/armeabi/liblocSDK3.so -------------------------------------------------------------------------------- /TianTianNews/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TianTianNews2/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Tracking/libs/armeabi/liblocSDK3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/libs/armeabi/liblocSDK3.so -------------------------------------------------------------------------------- /Demo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Demo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Demo/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Demo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /HTTPDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /MultiLoc/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/libs/android-support-v4.jar -------------------------------------------------------------------------------- /MultiLoc/libs/baidumapapi_v3_2_0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/libs/baidumapapi_v3_2_0.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Tracking/libs/armeabi/libvi_voslib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/libs/armeabi/libvi_voslib.so -------------------------------------------------------------------------------- /Tracking/libs/baidumapapi_v2_1_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/libs/baidumapapi_v2_1_1.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes.dex -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FragmentBasics 3 | 4 | -------------------------------------------------------------------------------- /HireMe/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MiShop/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/qb-gson2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/qb-gson2.2.1.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/resources.ap_ -------------------------------------------------------------------------------- /GPSDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSDemo/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSDemo/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTTPDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTTPDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTTPDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiLoc/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiLoc/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiLoc/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiLoc/res/drawable-xhdpi/icon_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/res/drawable-xhdpi/icon_mark.png -------------------------------------------------------------------------------- /NetSpeed/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/minidns-0.1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/minidns-0.1.7.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-im-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-im-4.1.6.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-tcp-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-tcp-4.1.6.jar -------------------------------------------------------------------------------- /TouTiao/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Tracking/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tracking/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Tracking/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tracking/src/org/liaops/tracking/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/src/org/liaops/tracking/Main.java -------------------------------------------------------------------------------- /WeJoke/WeJoke/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/libs/android-support-v4.jar -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-hdpi/ic_stub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-hdpi/ic_stub.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/ic_launcher-web.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/ZhihuDaily.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/ZhihuDaily.apk -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/ic_launcher-web.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/libs/okio-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/libs/okio-1.8.0.jar -------------------------------------------------------------------------------- /todoapp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/todoapp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GPSTracker/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSTracker/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSTracker/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSTracker/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /GPSTracker/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSTracker/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTTPDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-hdpi/logo.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xhdpi/logo.png -------------------------------------------------------------------------------- /MultiLoc/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstApp/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MyFirstApp/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstApp/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MyFirstApp/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstApp/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MyFirstApp/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyFirstApp/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MyFirstApp/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/jxmpp-core-0.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/jxmpp-core-0.4.2.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-core-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-core-4.1.6.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/raw/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/raw/beep.wav -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/ic_launcher-web.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-hdpi/ic_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-hdpi/ic_empty.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-hdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-hdpi/ic_error.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-xhdpi/ic_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-xhdpi/ic_empty.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-xhdpi/ic_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-xhdpi/ic_error.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-xhdpi/ic_stub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-xhdpi/ic_stub.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/libs/okhttp-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/libs/okhttp-3.3.1.jar -------------------------------------------------------------------------------- /BlockExplorer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ContactsDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ContactsDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ContactsDemo/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ContactsDemo/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /ContactsDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ContactsDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/FragmentBasics/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xxhdpi/logo.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xxxhdpi/logo.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/wifi.png -------------------------------------------------------------------------------- /QuickBloxDemo2/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-android-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-android-4.1.6.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TianTianNews/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TianTianNews2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HTTPDemo/src/com/neolee/httpdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HTTPDemo/src/com/neolee/httpdemo/MainActivity.java -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xxhdpi/moren_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xxhdpi/moren_g.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/mipmap-xxhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/mipmap-xxhdpi/app_icon.png -------------------------------------------------------------------------------- /MultiLoc/libs/armeabi/libBaiduMapSDK_v3_2_0_15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/libs/armeabi/libBaiduMapSDK_v3_2_0_15.so -------------------------------------------------------------------------------- /MyFirstApp/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainActivity 4 | 5 | -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/inout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/inout.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/option.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/select.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/jxmpp-util-cache-0.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/jxmpp-util-cache-0.4.2.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-extensions-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-extensions-4.1.6.jar -------------------------------------------------------------------------------- /SocketClientTest/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/SocketClientTest/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SocketClientTest/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/SocketClientTest/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /SocketClientTest/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/SocketClientTest/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /VideoPlayerDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/VideoPlayerDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /VideoPlayerDemo/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/VideoPlayerDemo/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /VideoPlayerDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/VideoPlayerDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/libs/android-support-v4.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/libs/android-support-v4.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/libs/okhttputils-2_6_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/libs/okhttputils-2_6_1.jar -------------------------------------------------------------------------------- /BlockExplorer/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /GPSDemo/src/com/neolee/gpsdemo/GPSDemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSDemo/src/com/neolee/gpsdemo/GPSDemoActivity.java -------------------------------------------------------------------------------- /GPSTracker/src/com/neolee/gpstracker/MainService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/GPSTracker/src/com/neolee/gpstracker/MainService.java -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MultiLoc/src/com/rainsong/multiloc/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MultiLoc/src/com/rainsong/multiloc/MainActivity.java -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/checked.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/uncheck.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/unselect.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/libjingle_peerconnection.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/libjingle_peerconnection.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-experimental-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-experimental-4.1.6.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-sasl-provided-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-sasl-provided-4.1.6.jar -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/libs/ApiStoreSDK1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/libs/ApiStoreSDK1.0.4.jar -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/libs/android-support-v4.jar -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tracking/libs/armeabi/libapp_BaiduMapApplib_v2_1_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/Tracking/libs/armeabi/libapp_BaiduMapApplib_v2_1_1.so -------------------------------------------------------------------------------- /WeJoke/WeJoke/libs/universal-image-loader-1.9.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/WeJoke/libs/universal-image-loader-1.9.5.jar -------------------------------------------------------------------------------- /todoapp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/todoapp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /todoapp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/todoapp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /todoapp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/todoapp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/progress.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/progress.9.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/title.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /todoapp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/todoapp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /todoapp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/todoapp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable-hdpi/progress_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/drawable-hdpi/progress_bg.9.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/NetSpeed/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/libs/smack-resolver-minidns-4.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/libs/smack-resolver-minidns-4.1.6.jar -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_call.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_edit.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_call.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_edit.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable/ic_noavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable/ic_noavatar.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/FragmentBasics/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/FragmentBasics/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/FragmentBasics/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HireMe/.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 | -------------------------------------------------------------------------------- /MiShop/.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 | -------------------------------------------------------------------------------- /NetSpeed/.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 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_mic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_mic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_mic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_mic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_call.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_edit.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_call.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_edit.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /TouTiao/.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 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/libs/universal-image-loader-1.9.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/libs/universal-image-loader-1.9.5.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/libs/universal-image-loader-1.9.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/libs/universal-image-loader-1.9.5.jar -------------------------------------------------------------------------------- /todoapp/.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 | -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/FragmentBasics/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/FragmentBasics/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_call_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_call_end.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_mic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_mic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_videocam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_videocam.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_call_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_call_end.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_mic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_mic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_videocam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_videocam.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_call_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_call_end.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_mic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_mic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_videocam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_videocam.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_mic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_mic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_mic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_mic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable/ic_user_camera_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable/ic_user_camera_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianTianNews/.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 | -------------------------------------------------------------------------------- /TianTianNews2/.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 | -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/libs/universal-image-loader-1.9.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/libs/universal-image-loader-1.9.5.jar -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/library_pulltorefresh.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/library_pulltorefresh.jar -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /FragmentBasics/.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 | -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_home_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_home_normal.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_call_end_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_call_end_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_exit_to_app.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_videocam_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_videocam_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_call_end_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_call_end_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_exit_to_app.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_videocam_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_videocam_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_mic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_mic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_call_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_call_end.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_videocam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_videocam.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/ZhihuDaily/res/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_home_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_home_selected.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_on_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_dynamic_on_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_videocam_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_videocam_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_on_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_dynamic_on_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_videocam_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_videocam_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_call_end_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_call_end_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_on_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_on_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_exit_to_app.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_videocam_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_videocam_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_call_end_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_call_end_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_off.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_on.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_exit_to_app.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_mic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_mic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_videocam_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_videocam_off.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/default_round_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/default_round_head.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/right_drawer_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/right_drawer_normal.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/ic_category_right_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/ic_category_right_edge.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/res/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_category_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_category_normal.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/jniLibs/x86/libjingle_peerconnection_so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/jniLibs/x86/libjingle_peerconnection_so.so -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_switch_camera_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-hdpi/ic_switch_camera_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_switch_camera_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-mdpi/ic_switch_camera_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_dynamic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_videocam_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_videocam_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_off_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_on_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_dynamic_on_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_switch_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_switch_camera.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/refreshicon_titlebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/refreshicon_titlebar.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/right_drawer_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/right_drawer_pressed.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/ic_category_expand_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/ic_category_expand_normal.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/WeJoke/library_PullToRefresh/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$id.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png -------------------------------------------------------------------------------- /HireMe/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/HireMe/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_category_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_category_selected.png -------------------------------------------------------------------------------- /MiShop/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/MiShop/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/jniLibs/x86_64/libjingle_peerconnection_so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/jniLibs/x86_64/libjingle_peerconnection_so.so -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_switch_camera_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxhdpi/ic_switch_camera_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_switch_camera_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_switch_camera_sm.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_videocam_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/res/drawable-xxxhdpi/ic_videocam_off_sm.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/ic_category_right_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/ic_category_right_edge.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/ic_category_right_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/ic_category_right_edge.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_mine_normal.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_news_normal.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_video_normal.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/ic_category_right_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/ic_category_right_edge.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/ic_category_expand_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/ic_category_expand_pressed.png -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TouTiao/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$anim.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$attr.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$color.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$dimen.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$layout.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$menu.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$string.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$style.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/Rsa.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/Rsa.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png -------------------------------------------------------------------------------- /QuickBloxDemo2/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/ic_category_expand_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/ic_category_expand_normal.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_mine_selected.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_news_selected.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_video_selected.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/ic_category_expand_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/ic_category_expand_normal.png -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable-xhdpi/ic_category_expand_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianXingNews/TianXingNews/res/drawable-xhdpi/ic_category_expand_pressed.png -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily/library_PullToRefresh/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$drawable.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/BlockExplorer/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/jniLibs/arm64-v8a/libjingle_peerconnection_so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/jniLibs/arm64-v8a/libjingle_peerconnection_so.so -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/jniLibs/armeabi-v7a/libjingle_peerconnection_so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/QuickBloxDemo2/app/src/main/jniLibs/armeabi-v7a/libjingle_peerconnection_so.so -------------------------------------------------------------------------------- /SocketClientTest/src/com/neolee/socketclienttest/SocketClientTestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/SocketClientTest/src/com/neolee/socketclienttest/SocketClientTestActivity.java -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/ic_category_expand_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/ic_category_expand_pressed.png -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews/pulltorefresh/src/main/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/ic_category_expand_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/ic_category_expand_normal.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/ic_category_expand_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/ic_category_expand_pressed.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_discover_normal.png -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/TianTianNews2/app/src/main/res/drawable-xxhdpi/icon_main_discover_selected.png -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/hiremeplz/hireme/bean/DetailsInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/hiremeplz/hireme/bean/DetailsInfo.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/BuildConfig.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/R$styleable.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-xxhdpi/image_small_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/res/crunch/drawable-xxhdpi/image_small_default.png -------------------------------------------------------------------------------- /BlockExplorer/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$id.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/DateUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/DateUtils.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/GsonUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/GsonUtils.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/ListUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/ListUtils.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/ZhihuUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/util/ZhihuUtils.class -------------------------------------------------------------------------------- /GPSDemo/gen/com/neolee/gpsdemo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.neolee.gpsdemo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /GPSDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, GPSDemoActivity! 5 | GPSDemo 6 | 7 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$anim.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$attr.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$dimen.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/ZhihuApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/ZhihuApplication.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/db/DatabaseHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/db/DatabaseHelper.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/db/NewsDataSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/db/NewsDataSource.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /HTTPDemo/gen/com/neolee/httpdemo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.neolee.httpdemo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$layout.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$string.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/adapter/NewsAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/adapter/NewsAdapter.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/gson-2.2.4-1950fbfc95cc453e0e00fac5114e05a1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/gson-2.2.4-1950fbfc95cc453e0e00fac5114e05a1.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/okio-1.8.0-4a4378b2cc9c4fc6fbc232b5099d13eb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/okio-1.8.0-4a4378b2cc9c4fc6fbc232b5099d13eb.jar -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /GPSTracker/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, GPSTrackerActivity! 5 | GPSTracker 6 | 7 | -------------------------------------------------------------------------------- /MultiLoc/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$drawable.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/handmark/pulltorefresh/library/R$styleable.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/hiremeplz/hireme/bean/DetailsInfo$MsgEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/hiremeplz/hireme/bean/DetailsInfo$MsgEntity.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/activity/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/activity/MainActivity.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/NewsListEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/NewsListEntity.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/okhttp-3.3.1-54f74a65af73d7833db93a9f324b1561.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/okhttp-3.3.1-54f74a65af73d7833db93a9f324b1561.jar -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/res/crunch/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable/normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/chat/listeners/QBSubscriptionListener.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.chat.listeners; 2 | 3 | 4 | public interface QBSubscriptionListener { 5 | 6 | void subscriptionRequested(int var1); 7 | } 8 | -------------------------------------------------------------------------------- /SocketClientTest/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SocketClientTestActivity! 5 | SocketClientTest 6 | 7 | -------------------------------------------------------------------------------- /VideoPlayerDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, MainActivity! 5 | VideoPlayerDemo 6 | 7 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/hiremeplz/hireme/bean/DetailsInfo$DataEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/hiremeplz/hireme/bean/DetailsInfo$DataEntity.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment.class -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable/pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/activity/HireDetailsActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/activity/HireDetailsActivity.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$1.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$2.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$3.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/android-support-v4-a10ff292177677e12db02abd0519ff3b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/android-support-v4-a10ff292177677e12db02abd0519ff3b.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/okhttputils-2_6_1-050cc4dba457781e504727283a6a82b0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/okhttputils-2_6_1-050cc4dba457781e504727283a6a82b0.jar -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$anim.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$attr.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$id.class -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/chat/QBSignaling.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.chat; 2 | 3 | import org.jivesoftware.smack.AbstractConnectionListener; 4 | 5 | public class QBSignaling extends AbstractConnectionListener { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/adapter/NewsAdapter$ViewHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/adapter/NewsAdapter$ViewHolder.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/ListJobbersResponseInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/ListJobbersResponseInfo.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/library_pulltorefresh-b52c9a10bccdacc90ebdbba695ff2aa7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/library_pulltorefresh-b52c9a10bccdacc90ebdbba695ff2aa7.jar -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/gen/com/rainsong/zhihudaily/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.rainsong.zhihudaily; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$dimen.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$layout.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$string.class -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/bg_titlebar_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/NewsListEntity$NewsEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/NewsListEntity$NewsEntity.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/BuildConfig.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$drawable.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/R$styleable.class -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GPSDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jun 27 16:37:25 CST 2013 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.compliance=1.6 5 | org.eclipse.jdt.core.compiler.source=1.6 6 | -------------------------------------------------------------------------------- /HTTPDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 28 15:53:17 CST 2013 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.compliance=1.6 5 | org.eclipse.jdt.core.compiler.source=1.6 6 | -------------------------------------------------------------------------------- /HTTPDemo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /MultiLoc/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/dexedLibs/universal-image-loader-1.9.5-1029b620a22e7f0a4446fd0bb1988ba2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/dexedLibs/universal-image-loader-1.9.5-1029b620a22e7f0a4446fd0bb1988ba2.jar -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/ILoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/ILoadingLayout.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/IPullToRefresh.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/IPullToRefresh.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/OverscrollHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/OverscrollHelper.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/Utils.class -------------------------------------------------------------------------------- /HTTPDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /HireMe/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /MiShop/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /MultiLoc/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/LoadingLayoutProxy.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase.class -------------------------------------------------------------------------------- /todoapp/app/src/main/res/drawable/touch_feedback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/ListJobbersResponseInfo$DataEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/ListJobbersResponseInfo$DataEntity.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$1.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$2.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$3.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshGridView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshListView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/ViewCompat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/ViewCompat.class -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /FragmentBasics/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /HTTPDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPDemo 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /MultiLoc/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MultiLoc 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/activity/HireDetailsActivity$MyStringCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/activity/HireDetailsActivity$MyStringCallback.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/ListJobbersResponseInfo$RetDataEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/entity/ListJobbersResponseInfo$RetDataEntity.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$FirstStringCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$FirstStringCallback.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$MoreStringCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/ZhihuDaily/bin/classes/com/rainsong/zhihudaily/fragment/NewsListFragment$MoreStringCallback.class -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$Mode.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$State.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshScrollView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView$1.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView$2.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/LoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/LoadingLayout.class -------------------------------------------------------------------------------- /ContactsDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, MainActivity! 5 | ContactsDemo 6 | Get Contacts 7 | 8 | -------------------------------------------------------------------------------- /MiShop/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 小米商城 3 | 首页 4 | 分类 5 | 发现 6 | 7 | 8 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/core/helper/StringUtils.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.core.helper; 2 | 3 | 4 | public class StringUtils { 5 | 6 | public static boolean isEmpty(String string) { 7 | return string.trim().length() == 0; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WeJoke 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/gen/com/handmark/pulltorefresh/library/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.handmark.pulltorefresh.library; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/IndicatorLayout.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK11.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/ViewCompat$SDK16.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/gen/com/handmark/pulltorefresh/library/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.handmark.pulltorefresh.library; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable/floatwindow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.class -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable/bg_category_indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$Orientation.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.class -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable/bg_category_indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/bg_category_indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$AnimationStyle.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.class -------------------------------------------------------------------------------- /HireMe/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HireMe 3 | 4 | 首页 5 | 视频 6 | 发现 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /HireMe/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 | -------------------------------------------------------------------------------- /MiShop/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 | -------------------------------------------------------------------------------- /NetSpeed/app/src/main/res/drawable/thumb.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /NetSpeed/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 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/rainsong/quickbloxdemo2/fragment/OnCallEventsController.java: -------------------------------------------------------------------------------- 1 | package com.rainsong.quickbloxdemo2.fragment; 2 | 3 | 4 | public interface OnCallEventsController { 5 | 6 | void onSwitchAudio(); 7 | 8 | void onUseHeadSet(boolean use); 9 | 10 | } 11 | -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable/bg_category_indicator.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable/bg_category_indicator_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TouTiao/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 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnRefreshListener2.class -------------------------------------------------------------------------------- /todoapp/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 | -------------------------------------------------------------------------------- /FragmentBasics/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 | -------------------------------------------------------------------------------- /QuickBloxDemo2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 21 11:34:03 PDT 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.8-all.zip 7 | -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable/bg_category_indicator_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TianTianNews/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 | -------------------------------------------------------------------------------- /TianTianNews2/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 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/bg_category_indicator_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/ic_category_left_edge.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/src/com/rainsong/wejoke/JokeEntity.java: -------------------------------------------------------------------------------- 1 | package com.rainsong.wejoke; 2 | 3 | public class JokeEntity { 4 | public long id; 5 | public long xhid; 6 | public String author; 7 | public String content; 8 | public String picUrl; 9 | public String status; 10 | } 11 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnPullEventListener.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$SmoothScrollRunnable.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListView.class -------------------------------------------------------------------------------- /BlockExplorer/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Jun 03 10:39:45 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 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/core/exception/BaseServiceException.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.core.exception; 2 | 3 | 4 | public class BaseServiceException extends Exception { 5 | 6 | public BaseServiceException(String description) { 7 | super(description); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/core/exception/QBRuntimeException.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.core.exception; 2 | 3 | 4 | public class QBRuntimeException extends RuntimeException { 5 | 6 | public QBRuntimeException(String description) { 7 | super(description); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable/bg_category_indicator_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/bg_head_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/bg_head_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshWebView$InternalWebViewSDK9.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnLastItemVisibleListener.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshGridView$InternalGridViewSDK9.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshListView$InternalListViewSDK9.class -------------------------------------------------------------------------------- /wetracks/1/app.conf: -------------------------------------------------------------------------------- 1 | handlers: 2 | - url : / 3 | script: index.php 4 | 5 | - expire : .jpg modify 10 years 6 | - expire : .swf modify 10 years 7 | - expire : .png modify 10 years 8 | - expire : .gif modify 10 years 9 | - expire : .JPG modify 10 years 10 | - expire : .ico modify 10 years 11 | -------------------------------------------------------------------------------- /HTTPDemo/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MultiLoc/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshScrollView$InternalScrollViewSDK9.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2$JsValueCallback.class -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/chat/listeners/QBVideoChatSignalingManagerListener.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.chat.listeners; 2 | 3 | import com.quickblox.chat.QBSignaling; 4 | 5 | public interface QBVideoChatSignalingManagerListener { 6 | 7 | void signalingCreated(QBSignaling var1, boolean var2); 8 | } 9 | -------------------------------------------------------------------------------- /WeJoke/WeJoke/res/menu/joke.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshBase$OnSmoothScrollFinishedListener.class -------------------------------------------------------------------------------- /HireMe/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #FF0000 8 | 9 | 10 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/chat/listeners/QBPrivacyListListener.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.chat.listeners; 2 | 3 | import java.util.List; 4 | 5 | public interface QBPrivacyListListener { 6 | 7 | void setPrivacyList(String var1, List var2); 8 | 9 | void updatedPrivacyList(String var1); 10 | } 11 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/bg_head.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/src/com/rainsong/zhihudaily/util/ListUtils.java: -------------------------------------------------------------------------------- 1 | package com.rainsong.zhihudaily.util; 2 | 3 | import java.util.List; 4 | 5 | public class ListUtils { 6 | public static boolean isEmpty(List sourceList) { 7 | return (sourceList == null || sourceList.size() == 0); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/src/com/rainsong/zhihudaily/util/ListUtils.java: -------------------------------------------------------------------------------- 1 | package com.rainsong.zhihudaily.util; 2 | 3 | import java.util.List; 4 | 5 | public class ListUtils { 6 | public static boolean isEmpty(List sourceList) { 7 | return (sourceList == null || sourceList.size() == 0); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #FF0000 8 | 9 | 10 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ZhihuDaily/ZhihuDaily/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 知乎日报 5 | Settings 6 | Hello world! 7 | 今日热闻 8 | 9 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ZhihuDaily2/ZhihuDaily/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 知乎日报 5 | Settings 6 | Hello world! 7 | 今日热闻 8 | 9 | -------------------------------------------------------------------------------- /TouTiao/app/src/main/res/drawable/ic_category_left_edge.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 下拉刷新… 4 | 放开以刷新… 5 | 正在载入… 6 | 7 | -------------------------------------------------------------------------------- /QuickBloxDemo2/app/src/main/java/com/quickblox/core/helper/CollectionUtils.java: -------------------------------------------------------------------------------- 1 | package com.quickblox.core.helper; 2 | 3 | import java.util.Collection; 4 | 5 | public class CollectionUtils { 6 | 7 | public static boolean isEmpty(Collection collection) { 8 | return collection == null || collection.isEmpty(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /TianTianNews/app/src/main/res/drawable/ic_category_left_edge.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TianTianNews2/app/src/main/res/drawable/ic_category_left_edge.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TianXingNews/TianXingNews/res/drawable/right_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ZhihuDaily/library_PullToRefresh/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 下拉刷新… 4 | 放开以刷新… 5 | 正在载入… 6 | 7 | -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxliaops/android-exercise/HEAD/ZhihuDaily2/library_PullToRefresh/bin/classes/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView$InternalExpandableListView.class -------------------------------------------------------------------------------- /ZhihuDaily2/library_PullToRefresh/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 下拉刷新… 4 | 放开以刷新… 5 | 正在载入… 6 | 7 | -------------------------------------------------------------------------------- /todoapp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | #CFD8DC 8 | 9 | 10 | -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /HTTPDemo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /MultiLoc/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /TianTianNews/pulltorefresh/src/main/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 下拉刷新… 4 | 放开以刷新… 5 | 正在载入… 6 | 7 | -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/values-ja/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 画面を引っ張って… 4 | 指を離して更新… 5 | 読み込み中… 6 | 7 | -------------------------------------------------------------------------------- /WeJoke/library_PullToRefresh/res/values-ko/pull_refresh_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 당겨서 새로 고침… 4 | 놓아서 새로 고침… 5 | 로드 중… 6 | 7 | -------------------------------------------------------------------------------- /BlockExplorer/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | --------------------------------------------------------------------------------