├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── zhixue │ │ └── behaviorcollect │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── zhixue │ │ │ └── behaviorcollect │ │ │ ├── Monitor │ │ │ ├── Monitor.java │ │ │ ├── MonitorActivityLifecycleCallbacks.java │ │ │ ├── Result.java │ │ │ ├── TouchHandle.java │ │ │ └── ViewUtils.java │ │ │ └── example │ │ │ ├── LoginFragmentPagerAdapter.java │ │ │ ├── MyApplication.java │ │ │ ├── activity │ │ │ ├── LoginRegisterActivity.java │ │ │ └── MainActivity.java │ │ │ └── fragment │ │ │ ├── BaseViewFragment.java │ │ │ ├── HomeFragment.java │ │ │ ├── LoginFragment.java │ │ │ ├── MyFragment.java │ │ │ ├── RegisterFragment.java │ │ │ └── ServiceFragment.java │ └── res │ │ ├── drawable │ │ ├── tab1_ico_selector.xml │ │ ├── tab2_ico_selector.xml │ │ └── tab3_ico_selector.xml │ │ ├── layout │ │ ├── activity_login_register.xml │ │ ├── activity_main.xml │ │ ├── fragment_home.xml │ │ ├── fragment_login.xml │ │ ├── fragment_my.xml │ │ ├── fragment_register.xml │ │ └── fragment_services.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 │ │ ├── ic_tab_home_check.png │ │ ├── ic_tab_home_default.png │ │ ├── ic_tab_my_check.png │ │ ├── ic_tab_my_default.png │ │ ├── ic_tab_products_check.png │ │ └── ic_tab_products_default.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── timg.jpg │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── zhixue │ └── behaviorcollect │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/zhixue/behaviorcollect/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/androidTest/java/com/example/zhixue/behaviorcollect/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/Monitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/Monitor.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/MonitorActivityLifecycleCallbacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/MonitorActivityLifecycleCallbacks.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/Result.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/TouchHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/TouchHandle.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/ViewUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/Monitor/ViewUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/LoginFragmentPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/LoginFragmentPagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/activity/LoginRegisterActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/activity/LoginRegisterActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/activity/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/BaseViewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/BaseViewFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/HomeFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/LoginFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/LoginFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/MyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/MyFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/RegisterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/RegisterFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/ServiceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/java/com/example/zhixue/behaviorcollect/example/fragment/ServiceFragment.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab1_ico_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/drawable/tab1_ico_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab2_ico_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/drawable/tab2_ico_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab3_ico_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/drawable/tab3_ico_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/activity_login_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/fragment_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/fragment_my.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_register.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/fragment_register.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/layout/fragment_services.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_tab_home_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_tab_home_check.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_tab_home_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_tab_home_default.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_tab_my_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_tab_my_check.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_tab_my_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_tab_my_default.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_tab_products_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_tab_products_check.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_tab_products_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxhdpi/ic_tab_products_default.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/mipmap-xxxhdpi/timg.jpg -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/zhixue/behaviorcollect/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/app/src/test/java/com/example/zhixue/behaviorcollect/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellozhixue/BehaviorCollect/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------