├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ellison │ │ └── websocket │ │ ├── ExampleInstrumentedTest.java │ │ └── WebSocketService.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ellison │ │ │ └── websocket │ │ │ ├── MyApp.java │ │ │ ├── WebSocketActivity.java │ │ │ ├── request │ │ │ ├── WsPongRequest.java │ │ │ ├── WsRequest.java │ │ │ └── WsStringRequest.java │ │ │ ├── response │ │ │ └── LogoutResponse.java │ │ │ ├── socket │ │ │ ├── ManualWsDiagnosisException.java │ │ │ ├── NetworkDiagnosisService.java │ │ │ ├── Networks.java │ │ │ ├── SocketConstants.java │ │ │ ├── WebSocketService.java │ │ │ ├── WsListener.java │ │ │ ├── WsObjectPool.java │ │ │ └── WsStatusListener.java │ │ │ └── utils │ │ │ └── RxLifecycleUtils.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── ellison │ └── websocket │ └── ExampleUnitTest.java ├── config.gradle ├── gif ├── canvas加载.png ├── canvas加载后.png ├── layout中加载.png ├── layout中加载后.png ├── recycler_view_截图前.jpeg ├── recycler_view_截图后.jpg ├── websocket测试.gif ├── 截图方法.png ├── 普通截图前.png └── 普通截图后.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scrrentspot ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ellison │ │ └── screenspot │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ellison │ │ │ └── screenspot │ │ │ ├── BaseActivity.java │ │ │ ├── BlueActivity.java │ │ │ ├── CommonCanvasSpotActivity.java │ │ │ ├── CommonSpotActivity.java │ │ │ ├── LayoutScreenSpotActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── RecyclerBean.java │ │ │ ├── RecyclerViewActivity.java │ │ │ └── RecyclerViewAdapter.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxxhdpi │ │ ├── common_spot.jpg │ │ └── comon_canvas_spot.jpg │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_blue.xml │ │ ├── activity_common_spot.xml │ │ ├── activity_layout_scrren_spot.xml │ │ ├── activity_main.xml │ │ ├── activity_recycler_view.xml │ │ ├── item_blue_tooth.xml │ │ ├── item_recycler_view.xml │ │ └── view_spreent_spot.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── ellison │ └── screenspot │ └── ExampleUnitTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ellison/websocket/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/androidTest/java/com/ellison/websocket/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ellison/websocket/WebSocketService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/androidTest/java/com/ellison/websocket/WebSocketService.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/MyApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/MyApp.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/WebSocketActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/WebSocketActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/request/WsPongRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/request/WsPongRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/request/WsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/request/WsRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/request/WsStringRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/request/WsStringRequest.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/response/LogoutResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/response/LogoutResponse.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/ManualWsDiagnosisException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/ManualWsDiagnosisException.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/NetworkDiagnosisService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/NetworkDiagnosisService.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/Networks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/Networks.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/SocketConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/SocketConstants.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/WebSocketService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/WebSocketService.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/WsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/WsListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/WsObjectPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/WsObjectPool.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/socket/WsStatusListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/socket/WsStatusListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/ellison/websocket/utils/RxLifecycleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/java/com/ellison/websocket/utils/RxLifecycleUtils.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/ellison/websocket/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/app/src/test/java/com/ellison/websocket/ExampleUnitTest.java -------------------------------------------------------------------------------- /config.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/config.gradle -------------------------------------------------------------------------------- /gif/canvas加载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/canvas加载.png -------------------------------------------------------------------------------- /gif/canvas加载后.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/canvas加载后.png -------------------------------------------------------------------------------- /gif/layout中加载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/layout中加载.png -------------------------------------------------------------------------------- /gif/layout中加载后.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/layout中加载后.png -------------------------------------------------------------------------------- /gif/recycler_view_截图前.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/recycler_view_截图前.jpeg -------------------------------------------------------------------------------- /gif/recycler_view_截图后.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/recycler_view_截图后.jpg -------------------------------------------------------------------------------- /gif/websocket测试.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/websocket测试.gif -------------------------------------------------------------------------------- /gif/截图方法.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/截图方法.png -------------------------------------------------------------------------------- /gif/普通截图前.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/普通截图前.png -------------------------------------------------------------------------------- /gif/普通截图后.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gif/普通截图后.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scrrentspot/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /scrrentspot/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/build.gradle -------------------------------------------------------------------------------- /scrrentspot/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/proguard-rules.pro -------------------------------------------------------------------------------- /scrrentspot/src/androidTest/java/com/ellison/screenspot/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/androidTest/java/com/ellison/screenspot/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /scrrentspot/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/BaseActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/BlueActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/BlueActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/CommonCanvasSpotActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/CommonCanvasSpotActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/CommonSpotActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/CommonSpotActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/LayoutScreenSpotActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/LayoutScreenSpotActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/MainActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/RecyclerBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/RecyclerBean.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/RecyclerViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/RecyclerViewActivity.java -------------------------------------------------------------------------------- /scrrentspot/src/main/java/com/ellison/screenspot/RecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/java/com/ellison/screenspot/RecyclerViewAdapter.java -------------------------------------------------------------------------------- /scrrentspot/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/drawable-xxxhdpi/common_spot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/drawable-xxxhdpi/common_spot.jpg -------------------------------------------------------------------------------- /scrrentspot/src/main/res/drawable-xxxhdpi/comon_canvas_spot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/drawable-xxxhdpi/comon_canvas_spot.jpg -------------------------------------------------------------------------------- /scrrentspot/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/activity_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/activity_blue.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/activity_common_spot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/activity_common_spot.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/activity_layout_scrren_spot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/activity_layout_scrren_spot.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/activity_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/activity_recycler_view.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/item_blue_tooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/item_blue_tooth.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/item_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/item_recycler_view.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/layout/view_spreent_spot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/layout/view_spreent_spot.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /scrrentspot/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /scrrentspot/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /scrrentspot/src/test/java/com/ellison/screenspot/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shejishi/WebSocketDemo/HEAD/scrrentspot/src/test/java/com/ellison/screenspot/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':scrrentspot' 2 | --------------------------------------------------------------------------------