├── .gitignore
├── .idea
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── gradle.xml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── misc.xml
├── modules.xml
└── runConfigurations.xml
├── GestureLock
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── atguigu
│ │ └── gesturelock
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ │ └── atguigu
│ │ │ └── gesturelock
│ │ │ ├── common
│ │ │ ├── AppUtil.java
│ │ │ └── Constants.java
│ │ │ ├── entity
│ │ │ └── GesturePoint.java
│ │ │ └── widget
│ │ │ ├── GestureContentView.java
│ │ │ ├── GestureDrawline.java
│ │ │ └── LockIndicator.java
│ └── res
│ │ ├── anim
│ │ └── shake.xml
│ │ ├── color
│ │ └── gesture_cancel_text_color.xml
│ │ ├── drawable-hdpi
│ │ ├── btn_back_normal.png
│ │ ├── btn_back_pressed.png
│ │ ├── gesture_node_normal.png
│ │ ├── gesture_node_pressed.png
│ │ ├── gesture_node_wrong.png
│ │ ├── lock_pattern_node_normal.png
│ │ ├── lock_pattern_node_pressed.png
│ │ └── user_logo.png
│ │ ├── drawable
│ │ └── titlebar_back_selector.xml
│ │ ├── layout
│ │ ├── activity_gesture_edit.xml
│ │ ├── activity_gesture_verify.xml
│ │ └── activity_main.xml
│ │ ├── mipmap-hdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ └── ic_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ └── ic_launcher.png
│ │ ├── values-w820dp
│ │ └── dimens.xml
│ │ └── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── atguigu
│ └── gesturelock
│ └── ExampleUnitTest.java
├── README.md
├── ViewPagerIndicator
├── build.gradle
├── build
│ ├── generated
│ │ └── source
│ │ │ ├── buildConfig
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── viewpagerindicator
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ ├── debug
│ │ │ │ └── com
│ │ │ │ │ └── viewpagerindicator
│ │ │ │ │ └── BuildConfig.java
│ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── viewpagerindicator
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── viewpagerindicator
│ │ │ │ ├── R.java
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ ├── debug
│ │ │ └── com
│ │ │ │ └── viewpagerindicator
│ │ │ │ └── R.java
│ │ │ └── release
│ │ │ └── com
│ │ │ └── viewpagerindicator
│ │ │ └── R.java
│ ├── intermediates
│ │ ├── blame
│ │ │ └── res
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── multi
│ │ │ │ └── values.json
│ │ │ │ └── single
│ │ │ │ ├── color.json
│ │ │ │ ├── drawable-hdpi-v4.json
│ │ │ │ ├── drawable-mdpi-v4.json
│ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ └── drawable.json
│ │ ├── bundles
│ │ │ ├── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── R.txt
│ │ │ │ └── res
│ │ │ │ │ ├── color
│ │ │ │ │ ├── vpi__dark_theme.xml
│ │ │ │ │ └── vpi__light_theme.xml
│ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ │ ├── drawable
│ │ │ │ │ └── vpi__tab_indicator.xml
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ └── default
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── R.txt
│ │ │ │ ├── classes.jar
│ │ │ │ └── res
│ │ │ │ ├── color
│ │ │ │ ├── vpi__dark_theme.xml
│ │ │ │ └── vpi__light_theme.xml
│ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ ├── drawable
│ │ │ │ └── vpi__tab_indicator.xml
│ │ │ │ └── values
│ │ │ │ └── values.xml
│ │ ├── classes
│ │ │ ├── debug
│ │ │ │ └── com
│ │ │ │ │ └── viewpagerindicator
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── CirclePageIndicator$1.class
│ │ │ │ │ ├── CirclePageIndicator$SavedState$1.class
│ │ │ │ │ ├── CirclePageIndicator$SavedState.class
│ │ │ │ │ ├── CirclePageIndicator.class
│ │ │ │ │ ├── IconPageIndicator$1.class
│ │ │ │ │ ├── IconPageIndicator.class
│ │ │ │ │ ├── IconPagerAdapter.class
│ │ │ │ │ ├── IcsLinearLayout.class
│ │ │ │ │ ├── LinePageIndicator$1.class
│ │ │ │ │ ├── LinePageIndicator$SavedState$1.class
│ │ │ │ │ ├── LinePageIndicator$SavedState.class
│ │ │ │ │ ├── LinePageIndicator.class
│ │ │ │ │ ├── PageIndicator.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── TabPageIndicator$1.class
│ │ │ │ │ ├── TabPageIndicator$2.class
│ │ │ │ │ ├── TabPageIndicator$OnTabReselectedListener.class
│ │ │ │ │ ├── TabPageIndicator$TabView.class
│ │ │ │ │ ├── TabPageIndicator.class
│ │ │ │ │ ├── TitlePageIndicator$1.class
│ │ │ │ │ ├── TitlePageIndicator$IndicatorStyle.class
│ │ │ │ │ ├── TitlePageIndicator$LinePosition.class
│ │ │ │ │ ├── TitlePageIndicator$OnCenterItemClickListener.class
│ │ │ │ │ ├── TitlePageIndicator$SavedState$1.class
│ │ │ │ │ ├── TitlePageIndicator$SavedState.class
│ │ │ │ │ ├── TitlePageIndicator.class
│ │ │ │ │ ├── UnderlinePageIndicator$1.class
│ │ │ │ │ ├── UnderlinePageIndicator$2.class
│ │ │ │ │ ├── UnderlinePageIndicator$SavedState$1.class
│ │ │ │ │ ├── UnderlinePageIndicator$SavedState.class
│ │ │ │ │ └── UnderlinePageIndicator.class
│ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── viewpagerindicator
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── CirclePageIndicator$1.class
│ │ │ │ ├── CirclePageIndicator$SavedState$1.class
│ │ │ │ ├── CirclePageIndicator$SavedState.class
│ │ │ │ ├── CirclePageIndicator.class
│ │ │ │ ├── IconPageIndicator$1.class
│ │ │ │ ├── IconPageIndicator.class
│ │ │ │ ├── IconPagerAdapter.class
│ │ │ │ ├── IcsLinearLayout.class
│ │ │ │ ├── LinePageIndicator$1.class
│ │ │ │ ├── LinePageIndicator$SavedState$1.class
│ │ │ │ ├── LinePageIndicator$SavedState.class
│ │ │ │ ├── LinePageIndicator.class
│ │ │ │ ├── PageIndicator.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$bool.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$integer.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R.class
│ │ │ │ ├── TabPageIndicator$1.class
│ │ │ │ ├── TabPageIndicator$2.class
│ │ │ │ ├── TabPageIndicator$OnTabReselectedListener.class
│ │ │ │ ├── TabPageIndicator$TabView.class
│ │ │ │ ├── TabPageIndicator.class
│ │ │ │ ├── TitlePageIndicator$1.class
│ │ │ │ ├── TitlePageIndicator$IndicatorStyle.class
│ │ │ │ ├── TitlePageIndicator$LinePosition.class
│ │ │ │ ├── TitlePageIndicator$OnCenterItemClickListener.class
│ │ │ │ ├── TitlePageIndicator$SavedState$1.class
│ │ │ │ ├── TitlePageIndicator$SavedState.class
│ │ │ │ ├── TitlePageIndicator.class
│ │ │ │ ├── UnderlinePageIndicator$1.class
│ │ │ │ ├── UnderlinePageIndicator$2.class
│ │ │ │ ├── UnderlinePageIndicator$SavedState$1.class
│ │ │ │ ├── UnderlinePageIndicator$SavedState.class
│ │ │ │ └── UnderlinePageIndicator.class
│ │ ├── incremental-safeguard
│ │ │ ├── debug
│ │ │ │ └── tag.txt
│ │ │ └── release
│ │ │ │ └── tag.txt
│ │ ├── incremental
│ │ │ ├── compileDebugAidl
│ │ │ │ └── dependency.store
│ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ └── dependency.store
│ │ │ ├── compileReleaseAidl
│ │ │ │ └── dependency.store
│ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ ├── compile-file-map.properties
│ │ │ │ ├── merged.dir
│ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugAssets
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugShaders
│ │ │ │ └── merger.xml
│ │ │ ├── mergeReleaseAssets
│ │ │ │ └── merger.xml
│ │ │ ├── mergeReleaseJniLibFolders
│ │ │ │ └── merger.xml
│ │ │ ├── mergeReleaseShaders
│ │ │ │ └── merger.xml
│ │ │ ├── packageDebugResources
│ │ │ │ ├── compile-file-map.properties
│ │ │ │ ├── merged.dir
│ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ └── merger.xml
│ │ │ └── packageReleaseResources
│ │ │ │ ├── compile-file-map.properties
│ │ │ │ ├── merged.dir
│ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ └── merger.xml
│ │ ├── manifest
│ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ └── AndroidManifest.xml
│ │ ├── manifests
│ │ │ └── aapt
│ │ │ │ ├── debug
│ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── release
│ │ │ │ └── AndroidManifest.xml
│ │ ├── res
│ │ │ ├── merged
│ │ │ │ └── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── color
│ │ │ │ │ ├── vpi__dark_theme.xml
│ │ │ │ │ └── vpi__light_theme.xml
│ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ ├── vpi__tab_selected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_holo.9.png
│ │ │ │ │ ├── vpi__tab_selected_pressed_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_focused_holo.9.png
│ │ │ │ │ ├── vpi__tab_unselected_holo.9.png
│ │ │ │ │ └── vpi__tab_unselected_pressed_holo.9.png
│ │ │ │ │ ├── drawable
│ │ │ │ │ └── vpi__tab_indicator.xml
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ └── resources-debug-androidTest.ap_
│ │ ├── symbols
│ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ └── R.txt
│ │ └── transforms
│ │ │ └── stripDebugSymbol
│ │ │ └── release
│ │ │ └── jars
│ │ │ └── 2000
│ │ │ └── 10
│ │ │ └── c3255a4703f644fd2205470162922d5146a8651a.jar
│ └── outputs
│ │ └── aar
│ │ ├── ViewPagerIndicator-debug.aar
│ │ └── ViewPagerIndicator-release.aar
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── viewpagerindicator
│ │ ├── CirclePageIndicator.java
│ │ ├── IconPageIndicator.java
│ │ ├── IconPagerAdapter.java
│ │ ├── IcsLinearLayout.java
│ │ ├── LinePageIndicator.java
│ │ ├── PageIndicator.java
│ │ ├── TabPageIndicator.java
│ │ ├── TitlePageIndicator.java
│ │ └── UnderlinePageIndicator.java
│ └── res
│ ├── color
│ ├── vpi__dark_theme.xml
│ └── vpi__light_theme.xml
│ ├── drawable-hdpi
│ ├── vpi__tab_selected_focused_holo.9.png
│ ├── vpi__tab_selected_holo.9.png
│ ├── vpi__tab_selected_pressed_holo.9.png
│ ├── vpi__tab_unselected_focused_holo.9.png
│ ├── vpi__tab_unselected_holo.9.png
│ └── vpi__tab_unselected_pressed_holo.9.png
│ ├── drawable-mdpi
│ ├── vpi__tab_selected_focused_holo.9.png
│ ├── vpi__tab_selected_holo.9.png
│ ├── vpi__tab_selected_pressed_holo.9.png
│ ├── vpi__tab_unselected_focused_holo.9.png
│ ├── vpi__tab_unselected_holo.9.png
│ └── vpi__tab_unselected_pressed_holo.9.png
│ ├── drawable-xhdpi
│ ├── vpi__tab_selected_focused_holo.9.png
│ ├── vpi__tab_selected_holo.9.png
│ ├── vpi__tab_selected_pressed_holo.9.png
│ ├── vpi__tab_unselected_focused_holo.9.png
│ ├── vpi__tab_unselected_holo.9.png
│ └── vpi__tab_unselected_pressed_holo.9.png
│ ├── drawable
│ └── vpi__tab_indicator.xml
│ └── values
│ ├── vpi__attrs.xml
│ ├── vpi__colors.xml
│ ├── vpi__defaults.xml
│ └── vpi__styles.xml
├── app
├── .gitignore
├── build.gradle
├── libs
│ ├── MobCommons-2017.0412.1554.jar
│ ├── MobTools-2017.0412.1554.jar
│ ├── ShareSDK-Alipay-2.8.3.jar
│ ├── ShareSDK-Alipay-Core-2.8.3.jar
│ ├── ShareSDK-Alipay-Moments-2.8.3.jar
│ ├── ShareSDK-Core-2.8.3.jar
│ ├── ShareSDK-Email-2.8.3.jar
│ ├── ShareSDK-Evernote-2.8.3.jar
│ ├── ShareSDK-Facebook-2.8.3.jar
│ ├── ShareSDK-QQ-2.8.3.jar
│ ├── ShareSDK-QZone-2.8.3.jar
│ ├── ShareSDK-ShortMessage-2.8.3.jar
│ ├── ShareSDK-SinaWeibo-2.8.3.jar
│ ├── ShareSDK-TencentWeibo-2.8.3.jar
│ ├── ShareSDK-Twitter-2.8.3.jar
│ ├── ShareSDK-Wechat-2.8.3.jar
│ ├── ShareSDK-Wechat-Core-2.8.3.jar
│ ├── ShareSDK-Wechat-Favorite-2.8.3.jar
│ ├── ShareSDK-Wechat-Moments-2.8.3.jar
│ ├── ShareSDK-Youtube-2.8.3.jar
│ ├── android-async-http-master.jar
│ └── fastjson-1.2.4.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── ljr
│ │ └── invest_p2p
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── assets
│ │ ├── OpenSans-Regular.ttf
│ │ └── ShareSDK.xml
│ ├── java
│ │ ├── cn
│ │ │ └── sharesdk
│ │ │ │ └── onekeyshare
│ │ │ │ ├── CustomerLogo.java
│ │ │ │ ├── OnekeyShare.java
│ │ │ │ ├── OnekeySharePage.java
│ │ │ │ ├── OnekeyShareTheme.java
│ │ │ │ ├── OnekeyShareThemeImpl.java
│ │ │ │ ├── ShareContentCustomizeCallback.java
│ │ │ │ └── themes
│ │ │ │ └── classic
│ │ │ │ ├── ClassicTheme.java
│ │ │ │ ├── EditPage.java
│ │ │ │ ├── FriendAdapter.java
│ │ │ │ ├── FriendListItem.java
│ │ │ │ ├── FriendListPage.java
│ │ │ │ ├── IndicatorView.java
│ │ │ │ ├── PRTHeader.java
│ │ │ │ ├── PicViewerPage.java
│ │ │ │ ├── PlatformPage.java
│ │ │ │ ├── PlatformPageAdapter.java
│ │ │ │ ├── RotateImageView.java
│ │ │ │ ├── XView.java
│ │ │ │ ├── land
│ │ │ │ ├── EditPageLand.java
│ │ │ │ ├── FriendListPageLand.java
│ │ │ │ ├── PlatformPageAdapterLand.java
│ │ │ │ └── PlatformPageLand.java
│ │ │ │ └── port
│ │ │ │ ├── EditPagePort.java
│ │ │ │ ├── FriendListPagePort.java
│ │ │ │ ├── PlatformPageAdapterPort.java
│ │ │ │ └── PlatformPagePort.java
│ │ └── com
│ │ │ └── ljr
│ │ │ └── invest_p2p
│ │ │ ├── activity
│ │ │ ├── BarChartActivity.java
│ │ │ ├── CZActivity.java
│ │ │ ├── GestureEditActivity.java
│ │ │ ├── GestureVerifyActivity.java
│ │ │ ├── LineChartActivity.java
│ │ │ ├── LoginActivity.java
│ │ │ ├── MainActivity.java
│ │ │ ├── PieChartActivity.java
│ │ │ ├── RegistActivity.java
│ │ │ ├── TXActivity.java
│ │ │ ├── UserInfoActivity.java
│ │ │ └── WelcomeActivity.java
│ │ │ ├── adapter
│ │ │ ├── ProductAdapter.java
│ │ │ ├── ProductAdapterBest.java
│ │ │ └── base
│ │ │ │ ├── BaseHolder.java
│ │ │ │ ├── MyBaseAdapter.java
│ │ │ │ └── MyHolder.java
│ │ │ ├── bean
│ │ │ ├── HomeBean.java
│ │ │ ├── UpdateInfo.java
│ │ │ └── User.java
│ │ │ ├── common
│ │ │ ├── ActivityManager.java
│ │ │ ├── AppNetConfig.java
│ │ │ ├── BaseActivity.java
│ │ │ ├── BaseFragment.java
│ │ │ ├── CrashHandler.java
│ │ │ └── MyApplication.java
│ │ │ ├── fragment
│ │ │ ├── HomeFragment.java
│ │ │ ├── InvestFragment.java
│ │ │ ├── MineFragment.java
│ │ │ ├── MoreFragment.java
│ │ │ └── investfragment
│ │ │ │ ├── ProductHotFragment.java
│ │ │ │ ├── ProductListFragment.java
│ │ │ │ └── ProductRecommondFragment.java
│ │ │ ├── share
│ │ │ ├── apshare
│ │ │ │ └── ShareEntryActivity.java
│ │ │ └── wxapi
│ │ │ │ └── WXEntryActivity.java
│ │ │ ├── ui
│ │ │ ├── FlowLayout.java
│ │ │ ├── LoadingPage.java
│ │ │ ├── MyScrollView.java
│ │ │ ├── MyTextView.java
│ │ │ ├── RoundProgress.java
│ │ │ └── randomLayout
│ │ │ │ ├── AnimationUtil.java
│ │ │ │ ├── RandomLayout.java
│ │ │ │ ├── ShakeListener.java
│ │ │ │ └── StellarMap.java
│ │ │ └── util
│ │ │ ├── BitmapUtils.java
│ │ │ ├── DrawUtils.java
│ │ │ ├── MD5Utils.java
│ │ │ └── Utils.java
│ └── res
│ │ ├── drawable-hdpi
│ │ ├── app_icon.png
│ │ ├── app_name.png
│ │ ├── background_gesture.png
│ │ ├── commom_top.png
│ │ ├── common_title_backgourd.png
│ │ ├── ic_action_name.png
│ │ ├── ic_empty_page.png
│ │ ├── ic_error_page.png
│ │ ├── icon_more_about.png
│ │ ├── icon_more_contact.png
│ │ ├── icon_more_on.png
│ │ ├── icon_more_regist.png
│ │ ├── icon_more_reset.png
│ │ ├── icon_more_secret.png
│ │ ├── icon_more_share.png
│ │ ├── icon_more_sms.png
│ │ ├── lock_node_line2.png
│ │ ├── lock_title_bg.png
│ │ ├── ssdk_oks_ptr_ptr.png
│ │ ├── toggle_off.png
│ │ ├── toggle_on.png
│ │ └── user_logo.png
│ │ ├── drawable-mdpi
│ │ └── ic_action_name.png
│ │ ├── drawable-xhdpi
│ │ ├── btn_01.png
│ │ ├── btn_02.png
│ │ ├── guarantee_icon.png
│ │ ├── home_attribute_bg.png
│ │ ├── ic_action_name.png
│ │ ├── left.png
│ │ ├── lock_normal.png
│ │ ├── lock_round_click.png
│ │ ├── manage_list_count.png
│ │ ├── manage_list_guarantee.png
│ │ ├── manage_list_interest.png
│ │ ├── manage_list_member.png
│ │ ├── my_acount_safety.png
│ │ ├── my_asset_manage.png
│ │ ├── my_invest_manage.png
│ │ ├── my_recharge_bg.png
│ │ ├── my_reward_manage.png
│ │ ├── my_setting_icon.png
│ │ ├── my_user_bg_icon.png
│ │ ├── my_user_default.png
│ │ ├── my_withdraw_bg.png
│ │ ├── product_detail_title_bg.png
│ │ ├── product_edit_bg.9.png
│ │ ├── product_info_icon.png
│ │ ├── product_part1_icon.png
│ │ ├── product_part2_icon.png
│ │ ├── product_part3_icon.png
│ │ ├── product_part4_icon.png
│ │ ├── product_part5_icon.png
│ │ ├── product_part6_icon.png
│ │ ├── product_part7_icon.png
│ │ ├── product_part8_icon.png
│ │ ├── recommend.png
│ │ ├── ssdk_auth_title_back.png
│ │ ├── ssdk_back_arr.png
│ │ ├── ssdk_logo.png
│ │ ├── ssdk_oks_classic_alipay.png
│ │ ├── ssdk_oks_classic_alipaymoments.png
│ │ ├── ssdk_oks_classic_bluetooth.png
│ │ ├── ssdk_oks_classic_check_checked.png
│ │ ├── ssdk_oks_classic_check_default.png
│ │ ├── ssdk_oks_classic_dingding.png
│ │ ├── ssdk_oks_classic_douban.png
│ │ ├── ssdk_oks_classic_dropbox.png
│ │ ├── ssdk_oks_classic_email.png
│ │ ├── ssdk_oks_classic_evernote.png
│ │ ├── ssdk_oks_classic_facebook.png
│ │ ├── ssdk_oks_classic_facebookmessenger.png
│ │ ├── ssdk_oks_classic_flickr.png
│ │ ├── ssdk_oks_classic_foursquare.png
│ │ ├── ssdk_oks_classic_googleplus.png
│ │ ├── ssdk_oks_classic_instagram.png
│ │ ├── ssdk_oks_classic_instapaper.png
│ │ ├── ssdk_oks_classic_kaixin.png
│ │ ├── ssdk_oks_classic_kakaostory.png
│ │ ├── ssdk_oks_classic_kakaotalk.png
│ │ ├── ssdk_oks_classic_laiwang.png
│ │ ├── ssdk_oks_classic_laiwangmoments.png
│ │ ├── ssdk_oks_classic_line.png
│ │ ├── ssdk_oks_classic_linkedin.png
│ │ ├── ssdk_oks_classic_meipai.png
│ │ ├── ssdk_oks_classic_mingdao.png
│ │ ├── ssdk_oks_classic_pinterest.png
│ │ ├── ssdk_oks_classic_pocket.png
│ │ ├── ssdk_oks_classic_qq.png
│ │ ├── ssdk_oks_classic_qzone.png
│ │ ├── ssdk_oks_classic_renren.png
│ │ ├── ssdk_oks_classic_shortmessage.png
│ │ ├── ssdk_oks_classic_sinaweibo.png
│ │ ├── ssdk_oks_classic_tencentweibo.png
│ │ ├── ssdk_oks_classic_tumblr.png
│ │ ├── ssdk_oks_classic_twitter.png
│ │ ├── ssdk_oks_classic_vkontakte.png
│ │ ├── ssdk_oks_classic_wechat.png
│ │ ├── ssdk_oks_classic_wechatfavorite.png
│ │ ├── ssdk_oks_classic_wechatmoments.png
│ │ ├── ssdk_oks_classic_whatsapp.png
│ │ ├── ssdk_oks_classic_yixin.png
│ │ ├── ssdk_oks_classic_yixinmoments.png
│ │ ├── ssdk_oks_classic_youdao.png
│ │ ├── ssdk_oks_classic_youtube.png
│ │ ├── ssdk_title_div.png
│ │ ├── start_background.png
│ │ └── xlistview_arrow.png
│ │ ├── drawable-xxhdpi
│ │ ├── bottom01.png
│ │ ├── bottom02.png
│ │ ├── bottom03.png
│ │ ├── bottom04.png
│ │ ├── bottom05.png
│ │ ├── bottom06.png
│ │ ├── bottom07.png
│ │ ├── bottom08.png
│ │ ├── home.png
│ │ ├── ic_action_name.png
│ │ ├── ljty1080.png
│ │ ├── right.png
│ │ ├── wc_ac_01.png
│ │ ├── wc_ac_02.png
│ │ ├── wc_ac_03.png
│ │ ├── wc_ac_04.png
│ │ ├── wc_ac_05.png
│ │ ├── wc_ac_06.png
│ │ ├── wc_ac_07.png
│ │ ├── wc_ac_08.png
│ │ ├── wc_ac_09.png
│ │ ├── wc_ac_10.png
│ │ ├── wc_ac_11.png
│ │ ├── wc_ac_12.png
│ │ ├── wc_ac_13.png
│ │ ├── wc_ac_14.png
│ │ ├── wc_ac_15.png
│ │ └── wc_ac_16.png
│ │ ├── drawable
│ │ ├── animation_loading.xml
│ │ ├── gesture_cancel_text_color.xml
│ │ ├── ssdk_oks_classic_platform_cell_back.xml
│ │ ├── ssdk_oks_classic_progressbar.xml
│ │ └── toggle_selector.xml
│ │ ├── layout
│ │ ├── activity_bar_chart.xml
│ │ ├── activity_cz.xml
│ │ ├── activity_gesture_edit.xml
│ │ ├── activity_gesture_verify.xml
│ │ ├── activity_line_chart.xml
│ │ ├── activity_login.xml
│ │ ├── activity_main.xml
│ │ ├── activity_pie_chart.xml
│ │ ├── activity_regist.xml
│ │ ├── activity_tx.xml
│ │ ├── activity_user_info.xml
│ │ ├── activity_welcome.xml
│ │ ├── common_title.xml
│ │ ├── fragment_home.xml
│ │ ├── fragment_invest.xml
│ │ ├── fragment_invest_producthot.xml
│ │ ├── fragment_invest_productlist.xml
│ │ ├── fragment_invest_productrecommond.xml
│ │ ├── fragment_mine.xml
│ │ ├── fragment_more.xml
│ │ ├── item_product_list.xml
│ │ ├── main_bottom.xml
│ │ ├── page_empty.xml
│ │ ├── page_error.xml
│ │ ├── page_loading.xml
│ │ └── view_fk.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ ├── app_icon.png
│ │ ├── 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-en
│ │ ├── ssdk_oks_strings.xml
│ │ └── ssdk_strings.xml
│ │ └── values
│ │ ├── attrs.xml
│ │ ├── colors.xml
│ │ ├── ssdk_instapaper_strings.xml
│ │ ├── ssdk_oks_color_drawables.xml
│ │ ├── ssdk_oks_strings.xml
│ │ ├── ssdk_strings.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── ljr
│ └── invest_p2p
│ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── import-summary.txt
├── settings.gradle
└── 资料
├── gif
├── Mine.gif
├── MineLogin.gif
├── home.gif
├── invest.gif
├── login.gif
├── mine2.gif
├── more1.gif
├── more2.gif
├── more3.gif
└── update.gif
├── 图文
├── GestureLock.JPG
├── Welcome.JPG
├── p2p平台.jpg
├── 数据库用户表.JPG
└── 数据库部门意见表.JPG
└── 服务器与数据库资料
├── P2PInvest.rar
└── atguigu.sql
/.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 |
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
19 |
20 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/GestureLock/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/GestureLock/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 25
5 | buildToolsVersion "25.0.2"
6 | defaultConfig {
7 | minSdkVersion 15
8 | targetSdkVersion 25
9 | versionCode 1
10 | versionName "1.0"
11 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12 | }
13 | buildTypes {
14 | release {
15 | minifyEnabled false
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17 | }
18 | }
19 | }
20 |
21 | dependencies {
22 | compile fileTree(dir: 'libs', include: ['*.jar'])
23 | androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
24 | exclude group: 'com.android.support', module: 'support-annotations'
25 | })
26 | compile 'com.android.support:appcompat-v7:25.3.0'
27 | testCompile 'junit:junit:4.12'
28 | }
29 |
--------------------------------------------------------------------------------
/GestureLock/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in C:\android-studio-ide-1.5-windows\sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/GestureLock/src/androidTest/java/com/atguigu/gesturelock/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package com.atguigu.gesturelock;
2 |
3 | import android.content.Context;
4 | import android.support.test.InstrumentationRegistry;
5 | import android.support.test.runner.AndroidJUnit4;
6 |
7 | import org.junit.Test;
8 | import org.junit.runner.RunWith;
9 |
10 | import static org.junit.Assert.*;
11 |
12 | /**
13 | * Instrumentation test, which will execute on an Android device.
14 | *
15 | * @see Testing documentation
16 | */
17 | @RunWith(AndroidJUnit4.class)
18 | public class ExampleInstrumentedTest {
19 | @Test
20 | public void useAppContext() throws Exception {
21 | // Context of the app under test.
22 | Context appContext = InstrumentationRegistry.getTargetContext();
23 |
24 | assertEquals("com.atguigu.gesturelock", appContext.getPackageName());
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/GestureLock/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/GestureLock/src/main/java/com/atguigu/gesturelock/common/AppUtil.java:
--------------------------------------------------------------------------------
1 | package com.atguigu.gesturelock.common;
2 |
3 | import android.content.Context;
4 | import android.view.WindowManager;
5 |
6 | /**
7 | * Created by Administrator on 2016/10/31.
8 | */
9 |
10 | public class AppUtil {
11 |
12 | /**
13 | * 获取屏幕分辨率
14 | * @param context
15 | * @return
16 | */
17 | public static int[] getScreenDispaly(Context context) {
18 | WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
19 | int width = windowManager.getDefaultDisplay().getWidth();// 手机屏幕的宽度
20 | int height = windowManager.getDefaultDisplay().getHeight();// 手机屏幕的高度
21 | int result[] = { width, height };
22 | return result;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/GestureLock/src/main/java/com/atguigu/gesturelock/common/Constants.java:
--------------------------------------------------------------------------------
1 | package com.atguigu.gesturelock.common;
2 |
3 | /**
4 | * Created by Administrator on 2016/10/31.
5 | */
6 |
7 | public class Constants {
8 | //*/ 手势密码点的状态
9 | public static final int POINT_STATE_NORMAL = 0; // 正常状态
10 |
11 | public static final int POINT_STATE_SELECTED = 1; // 按下状态
12 |
13 | public static final int POINT_STATE_WRONG = 2; // 错误状态
14 | //*/
15 | }
16 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/anim/shake.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/color/gesture_cancel_text_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/btn_back_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/btn_back_normal.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/btn_back_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/btn_back_pressed.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/gesture_node_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/gesture_node_normal.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/gesture_node_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/gesture_node_pressed.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/gesture_node_wrong.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/gesture_node_wrong.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/lock_pattern_node_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/lock_pattern_node_normal.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/lock_pattern_node_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/lock_pattern_node_pressed.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable-hdpi/user_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/drawable-hdpi/user_logo.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/drawable/titlebar_back_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
14 |
15 |
21 |
22 |
28 |
29 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/GestureLock/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/GestureLock/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | GestureLock
3 |
4 |
5 | 设置手势密码
6 | 绘制解锁图案
7 | 再次绘制解锁图案
8 |
9 | 忘记手势密码?
10 | 用其他账号登录
11 | 绘制解锁图案
12 | 设置手势密码,防止他人未经授权查看
13 | 重新设置手势密码
14 |
15 |
16 |
--------------------------------------------------------------------------------
/GestureLock/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/GestureLock/src/test/java/com/atguigu/gesturelock/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.atguigu.gesturelock;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() throws Exception {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/ViewPagerIndicator/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 16
5 | buildToolsVersion "25.0.0"
6 |
7 | defaultConfig {
8 | minSdkVersion 4
9 | targetSdkVersion 4
10 | }
11 |
12 | buildTypes {
13 | release {
14 | minifyEnabled false
15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
16 | }
17 | }
18 | }
19 |
20 | dependencies {
21 | compile 'com.android.support:support-v4:18.+'
22 | }
23 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/generated/source/buildConfig/androidTest/debug/com/viewpagerindicator/test/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.viewpagerindicator.test;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = Boolean.parseBoolean("true");
8 | public static final String APPLICATION_ID = "com.viewpagerindicator.test";
9 | public static final String BUILD_TYPE = "debug";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = -1;
12 | public static final String VERSION_NAME = "";
13 | }
14 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/generated/source/buildConfig/debug/com/viewpagerindicator/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.viewpagerindicator;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = Boolean.parseBoolean("true");
8 | public static final String APPLICATION_ID = "com.viewpagerindicator";
9 | public static final String BUILD_TYPE = "debug";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = 65;
12 | public static final String VERSION_NAME = "2.4.1";
13 | }
14 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/generated/source/buildConfig/release/com/viewpagerindicator/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Automatically generated file. DO NOT MODIFY
3 | */
4 | package com.viewpagerindicator;
5 |
6 | public final class BuildConfig {
7 | public static final boolean DEBUG = false;
8 | public static final String APPLICATION_ID = "com.viewpagerindicator";
9 | public static final String BUILD_TYPE = "release";
10 | public static final String FLAVOR = "";
11 | public static final int VERSION_CODE = 65;
12 | public static final String VERSION_NAME = "2.4.1";
13 | }
14 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/blame/res/androidTest/debug/single/color.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "merged": "E:\\android_location\\Invest_P2P\\ViewPagerIndicator\\build\\intermediates\\res\\merged\\androidTest\\debug\\color\\vpi__light_theme.xml",
4 | "source": "E:\\android_location\\Invest_P2P\\ViewPagerIndicator\\build\\intermediates\\bundles\\debug\\res\\color\\vpi__light_theme.xml"
5 | },
6 | {
7 | "merged": "E:\\android_location\\Invest_P2P\\ViewPagerIndicator\\build\\intermediates\\res\\merged\\androidTest\\debug\\color\\vpi__dark_theme.xml",
8 | "source": "E:\\android_location\\Invest_P2P\\ViewPagerIndicator\\build\\intermediates\\bundles\\debug\\res\\color\\vpi__dark_theme.xml"
9 | }
10 | ]
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/blame/res/androidTest/debug/single/drawable.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "merged": "E:\\android_location\\Invest_P2P\\ViewPagerIndicator\\build\\intermediates\\res\\merged\\androidTest\\debug\\drawable\\vpi__tab_indicator.xml",
4 | "source": "E:\\android_location\\Invest_P2P\\ViewPagerIndicator\\build\\intermediates\\bundles\\debug\\res\\drawable\\vpi__tab_indicator.xml"
5 | }
6 | ]
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/color/vpi__dark_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/color/vpi__light_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-hdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-mdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/classes.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/classes.jar
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/color/vpi__dark_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/color/vpi__light_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-hdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-mdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/bundles/default/res/drawable-xhdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/BuildConfig.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/CirclePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IconPageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IconPageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IconPageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IconPageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IconPagerAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IconPagerAdapter.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IcsLinearLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/IcsLinearLayout.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/LinePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/PageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/PageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$attr.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$bool.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$color.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$dimen.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$drawable.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$id.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$integer.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$style.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R$styleable.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/R.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$2.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$OnTabReselectedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$OnTabReselectedListener.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$TabView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator$TabView.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TabPageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$IndicatorStyle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$IndicatorStyle.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$LinePosition.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$LinePosition.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$OnCenterItemClickListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$OnCenterItemClickListener.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/TitlePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$2.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/debug/com/viewpagerindicator/UnderlinePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/BuildConfig.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/CirclePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IconPageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IconPageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IconPageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IconPageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IconPagerAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IconPagerAdapter.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IcsLinearLayout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/IcsLinearLayout.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/LinePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/PageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/PageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$attr.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$bool.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$color.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$dimen.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$drawable.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$id.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$integer.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$style.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R$styleable.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/R.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$2.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$OnTabReselectedListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$OnTabReselectedListener.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$TabView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator$TabView.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TabPageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$IndicatorStyle.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$IndicatorStyle.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$LinePosition.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$LinePosition.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$OnCenterItemClickListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$OnCenterItemClickListener.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/TitlePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$2.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$SavedState$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$SavedState$1.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$SavedState.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator$SavedState.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/classes/release/com/viewpagerindicator/UnderlinePageIndicator.class
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental-safeguard/debug/tag.txt:
--------------------------------------------------------------------------------
1 | incremental task execution
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental-safeguard/release/tag.txt:
--------------------------------------------------------------------------------
1 | incremental task execution
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/compileDebugAidl/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/compileReleaseAidl/dependency.store:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/mergeDebugAssets/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/mergeDebugShaders/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/mergeReleaseAssets/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/incremental/mergeReleaseShaders/merger.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/manifests/aapt/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/manifests/aapt/release/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/color/vpi__dark_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/color/vpi__light_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/res/resources-debug-androidTest.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/res/resources-debug-androidTest.ap_
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/intermediates/transforms/stripDebugSymbol/release/jars/2000/10/c3255a4703f644fd2205470162922d5146a8651a.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/intermediates/transforms/stripDebugSymbol/release/jars/2000/10/c3255a4703f644fd2205470162922d5146a8651a.jar
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/outputs/aar/ViewPagerIndicator-debug.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/outputs/aar/ViewPagerIndicator-debug.aar
--------------------------------------------------------------------------------
/ViewPagerIndicator/build/outputs/aar/ViewPagerIndicator-release.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/build/outputs/aar/ViewPagerIndicator-release.aar
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/java/com/viewpagerindicator/IconPagerAdapter.java:
--------------------------------------------------------------------------------
1 | package com.viewpagerindicator;
2 |
3 | public interface IconPagerAdapter {
4 | /**
5 | * Get icon representing the page at {@code index} in the adapter.
6 | */
7 | int getIconResId(int index);
8 |
9 | // From PagerAdapter
10 | int getCount();
11 | }
12 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/color/vpi__dark_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/color/vpi__light_theme.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/ViewPagerIndicator/src/main/res/drawable-xhdpi/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/ViewPagerIndicator/src/main/res/values/vpi__colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 | #ff000000
19 | #fff3f3f3
20 | @color/vpi__background_holo_light
21 | @color/vpi__background_holo_dark
22 | #ff4c4c4c
23 | #ffb2b2b2
24 | @color/vpi__bright_foreground_holo_light
25 | @color/vpi__bright_foreground_holo_dark
26 |
27 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/libs/MobCommons-2017.0412.1554.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/MobCommons-2017.0412.1554.jar
--------------------------------------------------------------------------------
/app/libs/MobTools-2017.0412.1554.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/MobTools-2017.0412.1554.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Alipay-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Alipay-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Alipay-Core-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Alipay-Core-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Alipay-Moments-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Alipay-Moments-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Core-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Core-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Email-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Email-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Evernote-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Evernote-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Facebook-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Facebook-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-QQ-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-QQ-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-QZone-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-QZone-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-ShortMessage-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-ShortMessage-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-SinaWeibo-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-SinaWeibo-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-TencentWeibo-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-TencentWeibo-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Twitter-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Twitter-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Wechat-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Wechat-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Wechat-Core-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Wechat-Core-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Wechat-Favorite-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Wechat-Favorite-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Wechat-Moments-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Wechat-Moments-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/ShareSDK-Youtube-2.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/ShareSDK-Youtube-2.8.3.jar
--------------------------------------------------------------------------------
/app/libs/android-async-http-master.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/android-async-http-master.jar
--------------------------------------------------------------------------------
/app/libs/fastjson-1.2.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/libs/fastjson-1.2.4.jar
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in D:\Android studio\SDK\SDK/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
19 | # Uncomment this to preserve the line number information for
20 | # debugging stack traces.
21 | #-keepattributes SourceFile,LineNumberTable
22 |
23 | # If you keep the line number information, uncomment this to
24 | # hide the original source file name.
25 | #-renamesourcefileattribute SourceFile
26 |
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/ljr/invest_p2p/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package com.ljr.invest_p2p;
2 |
3 | import android.content.Context;
4 | import android.support.test.InstrumentationRegistry;
5 | import android.support.test.runner.AndroidJUnit4;
6 |
7 | import org.junit.Test;
8 | import org.junit.runner.RunWith;
9 |
10 | import static org.junit.Assert.*;
11 |
12 | /**
13 | * Instrumentation test, which will execute on an Android device.
14 | *
15 | * @see Testing documentation
16 | */
17 | @RunWith(AndroidJUnit4.class)
18 | public class ExampleInstrumentedTest {
19 | @Test
20 | public void useAppContext() throws Exception {
21 | // Context of the app under test.
22 | Context appContext = InstrumentationRegistry.getTargetContext();
23 |
24 | assertEquals("com.ljr.invest_p2p", appContext.getPackageName());
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/assets/OpenSans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ljrRookie/Invest_P2P/ad681c376fa62e396a4b45267a5d8ae4bb224105/app/src/main/assets/OpenSans-Regular.ttf
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/CustomerLogo.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare;
10 |
11 | import android.graphics.Bitmap;
12 | import android.view.View.OnClickListener;
13 |
14 | /** 九宫格自定义的图标对象 */
15 | public class CustomerLogo {
16 | public String label;
17 | public Bitmap logo;
18 | public OnClickListener listener;
19 | }
20 |
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/OnekeyShareTheme.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare;
10 |
11 | import cn.sharesdk.onekeyshare.themes.classic.ClassicTheme;
12 |
13 | /** 快捷分享的主题样式 */
14 | public enum OnekeyShareTheme {
15 | /** 九格宫的主题样式 ,对应的实现类ClassicTheme */
16 | CLASSIC(0, new ClassicTheme());
17 |
18 | private final int value;
19 | private final OnekeyShareThemeImpl impl;
20 |
21 | private OnekeyShareTheme(int value, OnekeyShareThemeImpl impl) {
22 | this.value = value;
23 | this.impl = impl;
24 | }
25 |
26 | public int getValue() {
27 | return value;
28 | }
29 |
30 | public OnekeyShareThemeImpl getImpl() {
31 | return impl;
32 | }
33 |
34 | public static OnekeyShareTheme fromValue(int value) {
35 | for (OnekeyShareTheme theme : OnekeyShareTheme.values()) {
36 | if (theme.value == value) {
37 | return theme;
38 | }
39 | }
40 | return CLASSIC;
41 | }
42 |
43 | }
44 |
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/ShareContentCustomizeCallback.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare;
10 |
11 | import cn.sharesdk.framework.Platform;
12 | import cn.sharesdk.framework.Platform.ShareParams;
13 |
14 | /** 自定义不同平台分享不同内容的接口 */
15 | public interface ShareContentCustomizeCallback {
16 |
17 | public void onShare(Platform platform, ShareParams paramsToShare);
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/themes/classic/RotateImageView.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare.themes.classic;
10 |
11 | import android.content.Context;
12 | import android.graphics.Canvas;
13 | import android.widget.ImageView;
14 |
15 | /** 在At好友页面中,下拉刷新列表头部的旋转箭头 */
16 | public class RotateImageView extends ImageView {
17 | private float rotation;
18 |
19 | public RotateImageView(Context context) {
20 | super(context);
21 | }
22 |
23 | public void setRotation(float rotation) {
24 | this.rotation = rotation;
25 | invalidate();
26 | }
27 |
28 | protected void onDraw(Canvas canvas) {
29 | canvas.rotate(rotation, getWidth() / 2, getHeight() / 2);
30 | super.onDraw(canvas);
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/themes/classic/XView.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare.themes.classic;
10 |
11 | import android.content.Context;
12 | import android.graphics.Canvas;
13 | import android.graphics.Paint;
14 | import android.view.View;
15 |
16 | /** 编辑页面中删除图片“X”按钮 */
17 | public class XView extends View {
18 | private float ratio;
19 |
20 | public XView(Context context) {
21 | super(context);
22 | }
23 |
24 | public void setRatio(float ratio) {
25 | this.ratio = ratio;
26 | }
27 |
28 | protected void onDraw(Canvas canvas) {
29 | int width = getWidth() / 2;
30 | int height = getHeight() / 2;
31 |
32 | Paint paint = new Paint();
33 | paint.setAntiAlias(true);
34 | paint.setColor(0xffa0a0a0);
35 | canvas.drawRect(width, 0, getWidth(), height, paint);
36 |
37 | paint = new Paint();
38 | paint.setAntiAlias(true);
39 | paint.setStrokeWidth(3f * ratio);
40 | paint.setColor(0xffffffff);
41 | float left = 8f * ratio;
42 | canvas.drawLine(width + left, left, getWidth() - left, width - left, paint);
43 | canvas.drawLine(width + left, width - left, getWidth() - left, left, paint);
44 | }
45 |
46 | }
47 |
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/themes/classic/land/FriendListPageLand.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare.themes.classic.land;
10 |
11 | import cn.sharesdk.onekeyshare.OnekeyShareThemeImpl;
12 | import cn.sharesdk.onekeyshare.themes.classic.FriendListPage;
13 |
14 | import com.mob.tools.utils.ResHelper;
15 |
16 | /** 横屏的好友列表 */
17 | public class FriendListPageLand extends FriendListPage {
18 | private static final int DESIGN_SCREEN_WIDTH = 1280;
19 | private static final int DESIGN_TITLE_HEIGHT = 70;
20 |
21 | public FriendListPageLand(OnekeyShareThemeImpl impl) {
22 | super(impl);
23 | }
24 |
25 | protected float getRatio() {
26 | float screenWidth = ResHelper.getScreenWidth(activity);
27 | return screenWidth / DESIGN_SCREEN_WIDTH;
28 | }
29 |
30 | protected int getDesignTitleHeight() {
31 | return DESIGN_TITLE_HEIGHT;
32 | }
33 |
34 | }
35 |
--------------------------------------------------------------------------------
/app/src/main/java/cn/sharesdk/onekeyshare/themes/classic/land/PlatformPageLand.java:
--------------------------------------------------------------------------------
1 | /*
2 | * 官网地站:http://www.mob.com
3 | * 技术支持QQ: 4006852216
4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复)
5 | *
6 | * Copyright (c) 2013年 mob.com. All rights reserved.
7 | */
8 |
9 | package cn.sharesdk.onekeyshare.themes.classic.land;
10 |
11 | import java.util.ArrayList;
12 |
13 | import cn.sharesdk.onekeyshare.OnekeyShareThemeImpl;
14 | import cn.sharesdk.onekeyshare.themes.classic.PlatformPage;
15 | import cn.sharesdk.onekeyshare.themes.classic.PlatformPageAdapter;
16 |
17 | /** 横屏的九宫格页面 */
18 | public class PlatformPageLand extends PlatformPage {
19 |
20 | public PlatformPageLand(OnekeyShareThemeImpl impl) {
21 | super(impl);
22 | }
23 |
24 | public void onCreate() {
25 | requestLandscapeOrientation();
26 | super.onCreate();
27 | }
28 |
29 | protected PlatformPageAdapter newAdapter(ArrayList