├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── glong │ │ └── demo │ │ └── ExampleInstrumentedTest.kt │ ├── debug │ └── res │ │ └── values │ │ └── google_maps_api.xml │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── glong │ │ │ └── demo │ │ │ ├── LandActivity.java │ │ │ ├── MainActivity.kt │ │ │ ├── entry │ │ │ └── HomePlanetBean.kt │ │ │ ├── kotlinview │ │ │ ├── StarChildView.kt │ │ │ ├── StarGroupViewKotlin.kt │ │ │ └── SunView.kt │ │ │ └── view │ │ │ └── StarGroupView.java │ └── res │ │ ├── anim │ │ └── sun_anim.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ ├── bg_award_exchange_disenable.png │ │ ├── bg_award_exchange_enable.png │ │ ├── ic_main_award.png │ │ ├── ic_sun.png │ │ ├── ic_sun_light.png │ │ ├── planet_diqiu_activated.png │ │ ├── planet_diqiu_normal.png │ │ ├── planet_haiwagnxing_activated.png │ │ ├── planet_haiwangxing_normal.png │ │ ├── planet_huoxing_activated.png │ │ ├── planet_huoxing_normal.png │ │ ├── planet_jinxing_activated.png │ │ ├── planet_jinxing_normal.png │ │ ├── planet_muxing_activated.png │ │ ├── planet_muxing_normal.png │ │ ├── planet_shuixing_activated.png │ │ ├── planet_shuixing_normal.png │ │ ├── planet_tianwangxing_activated.png │ │ ├── planet_tianwangxing_normal.png │ │ ├── planet_tuxing_activated.png │ │ ├── planet_tuxing_normal.png │ │ ├── planet_yueqiu_activated.png │ │ └── planet_yueqiu_mormal.png │ │ ├── drawable │ │ ├── drawable_home_progress.xml │ │ ├── ic_launcher_background.xml │ │ └── progressbar_h_shape1.xml │ │ ├── layout │ │ ├── activity_land.xml │ │ ├── activity_land_star.xml │ │ ├── activity_main.xml │ │ ├── layout_star_child.xml │ │ └── layout_sun_view.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── release │ └── res │ │ └── values │ │ └── google_maps_api.xml │ └── test │ └── java │ └── com │ └── glong │ └── demo │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio Navigation editor temp files 30 | .navigation/ 31 | 32 | # Android Studio captures folder 33 | captures/ 34 | 35 | # IntelliJ 36 | *.iml 37 | .idea/workspace.xml 38 | .idea/tasks.xml 39 | .idea/gradle.xml 40 | .idea/assetWizardSettings.xml 41 | .idea/dictionaries 42 | .idea/libraries 43 | .idea/caches 44 | 45 | # Keystore files 46 | # Uncomment the following line if you do not want to check your keystore files in. 47 | #*.jks 48 | 49 | # External native build folder generated in Android Studio 2.2 and later 50 | .externalNativeBuild 51 | 52 | # Google Services (e.g. APIs or Firebase) 53 | google-services.json 54 | 55 | # Freeline 56 | freeline.py 57 | freeline/ 58 | freeline_project_description.json 59 | 60 | # fastlane 61 | fastlane/report.xml 62 | fastlane/Preview.html 63 | fastlane/screenshots 64 | fastlane/test_output 65 | fastlane/readme.md 66 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Demos 2 | 效果见:[我的简书](https://www.jianshu.com/p/2954f2ef8ea5) 3 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | apply plugin: 'kotlin-android' 4 | 5 | apply plugin: 'kotlin-android-extensions' 6 | 7 | android { 8 | compileSdkVersion 28 9 | buildToolsVersion "29.0.0" 10 | defaultConfig { 11 | applicationId "com.glong.demo" 12 | minSdkVersion 21 13 | targetSdkVersion 28 14 | versionCode 1 15 | versionName "1.0" 16 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 17 | } 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | } 25 | 26 | dependencies { 27 | implementation fileTree(dir: 'libs', include: ['*.jar']) 28 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 29 | implementation 'androidx.appcompat:appcompat:1.0.2' 30 | implementation 'androidx.core:core-ktx:1.0.2' 31 | implementation 'com.google.android.gms:play-services-maps:17.0.0' 32 | implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 33 | testImplementation 'junit:junit:4.12' 34 | androidTestImplementation 'androidx.test:runner:1.2.0' 35 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' 36 | api 'org.jetbrains.anko:anko:0.10.8' 37 | } 38 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/glong/demo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.glong.demo 2 | 3 | import androidx.test.InstrumentationRegistry 4 | import androidx.test.runner.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getTargetContext() 22 | assertEquals("com.glong.demo", appContext.packageName) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/debug/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | YOUR_KEY_HERE 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 11 | 12 | 20 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 40 | 43 | 44 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/LandActivity.java: -------------------------------------------------------------------------------- 1 | package com.glong.demo; 2 | 3 | import android.os.Bundle; 4 | import android.view.View; 5 | import android.view.animation.AnimationUtils; 6 | import android.widget.FrameLayout; 7 | 8 | import androidx.annotation.Nullable; 9 | import androidx.appcompat.app.AppCompatActivity; 10 | 11 | import com.glong.demo.entry.HomePlanetBean; 12 | import com.glong.demo.kotlinview.StarChildView; 13 | import com.glong.demo.kotlinview.StarGroupViewKotlin; 14 | 15 | import java.util.ArrayList; 16 | 17 | /** 18 | * @author guolong 19 | * @since 2019/8/21 20 | */ 21 | public class LandActivity extends AppCompatActivity { 22 | 23 | @Override 24 | protected void onCreate(@Nullable Bundle savedInstanceState) { 25 | super.onCreate(savedInstanceState); 26 | boolean isDemo = getIntent().getBooleanExtra("isDemo", true); 27 | if (isDemo) { 28 | setContentView(R.layout.activity_land); 29 | View sunView = findViewById(R.id.sun_view); 30 | sunView.startAnimation((AnimationUtils.loadAnimation(this, R.anim.sun_anim))); 31 | } else { 32 | setContentView(R.layout.activity_land_star); 33 | initData(); 34 | } 35 | } 36 | 37 | private void initData() { 38 | ArrayList result = new ArrayList<>(); 39 | HomePlanetBean moon = new HomePlanetBean("月球", R.drawable.planet_yueqiu_mormal, R.drawable.planet_yueqiu_activated, 40 | 500, true, true); 41 | HomePlanetBean shui = new HomePlanetBean("水星", R.drawable.planet_shuixing_normal, R.drawable.planet_shuixing_activated, 42 | 1000, true, true); 43 | HomePlanetBean jin = new HomePlanetBean("金星", R.drawable.planet_jinxing_normal, R.drawable.planet_jinxing_activated, 44 | 1500, true, true); 45 | HomePlanetBean earth = new HomePlanetBean("地球", R.drawable.planet_diqiu_normal, R.drawable.planet_diqiu_activated, 46 | 2000, true, true); 47 | HomePlanetBean fire = new HomePlanetBean("火星", R.drawable.planet_huoxing_normal, R.drawable.planet_huoxing_activated, 48 | 2500, true, true); 49 | HomePlanetBean wood = new HomePlanetBean("木星", R.drawable.planet_muxing_normal, R.drawable.planet_muxing_activated, 50 | 3000, false, true); 51 | HomePlanetBean soil = new HomePlanetBean("土星", R.drawable.planet_tuxing_normal, R.drawable.planet_tuxing_activated, 52 | 3500, true, true); 53 | HomePlanetBean gold = new HomePlanetBean("天王星", R.drawable.planet_tianwangxing_normal, R.drawable.planet_tianwangxing_activated, 54 | 4000, true, true); 55 | HomePlanetBean ocean = new HomePlanetBean("海王星", R.drawable.planet_haiwangxing_normal, R.drawable.planet_haiwagnxing_activated, 56 | 4500, false, false); 57 | result.add(moon); 58 | result.add(shui); 59 | result.add(jin); 60 | result.add(earth); 61 | result.add(fire); 62 | result.add(wood); 63 | result.add(soil); 64 | result.add(gold); 65 | result.add(ocean); 66 | 67 | StarGroupViewKotlin starGroupView = findViewById(R.id.starGroupView); 68 | for (int i = 0; i < result.size(); i++) { 69 | StarChildView child = new StarChildView(result.get(i), this); 70 | starGroupView.addView(child, new FrameLayout.LayoutParams(-2, -2)); 71 | } 72 | starGroupView.requestLayout(); 73 | starGroupView.start(); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.glong.demo 2 | 3 | import android.content.Intent 4 | import android.os.Bundle 5 | import androidx.appcompat.app.AppCompatActivity 6 | import kotlinx.android.synthetic.main.activity_main.* 7 | 8 | class MainActivity : AppCompatActivity() { 9 | 10 | override fun onCreate(savedInstanceState: Bundle?) { 11 | super.onCreate(savedInstanceState) 12 | setContentView(R.layout.activity_main) 13 | 14 | button.setOnClickListener { 15 | startActivity(Intent(this@MainActivity, LandActivity::class.java)) 16 | } 17 | button2.setOnClickListener { 18 | startActivity(Intent(this@MainActivity, LandActivity::class.java).apply{ 19 | putExtra("isDemo",false) 20 | }) 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/entry/HomePlanetBean.kt: -------------------------------------------------------------------------------- 1 | package com.glong.demo.entry 2 | 3 | import androidx.annotation.DrawableRes 4 | 5 | /** 6 | * @author guolong 7 | * @since 2019/8/19 8 | */ 9 | data class HomePlanetBean( 10 | val planetName: String,//行星名字 11 | @DrawableRes val planetNormalImage: Int,//行星未激活图片 12 | @DrawableRes val planetActivateImage: Int,// 行星已激活图片 13 | val needStars: Int, // 需要多少星星才能激活 14 | val isActivated: Boolean, // 是否已激活 15 | val canActivate: Boolean // 是否可以激活 16 | ) -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/kotlinview/StarChildView.kt: -------------------------------------------------------------------------------- 1 | package com.glong.demo.kotlinview 2 | 3 | import android.annotation.SuppressLint 4 | import android.content.Context 5 | import android.view.LayoutInflater 6 | import androidx.constraintlayout.widget.ConstraintLayout 7 | import androidx.fragment.app.FragmentActivity 8 | import com.glong.demo.R 9 | import com.glong.demo.entry.HomePlanetBean 10 | import kotlinx.android.synthetic.main.layout_star_child.view.* 11 | import org.jetbrains.anko.toast 12 | 13 | /** 14 | * @author guolong 15 | * @since 2019/8/18 16 | */ 17 | @SuppressLint("ViewConstructor") 18 | class StarChildView(planetBean: HomePlanetBean, context: Context) : ConstraintLayout(context) { 19 | 20 | init { 21 | setWillNotDraw(false) 22 | LayoutInflater.from(context).inflate(R.layout.layout_star_child, this) 23 | button.setOnClickListener { 24 | context.toast("Button clicked") 25 | } 26 | 27 | planetBean.let { 28 | button.text = it.planetName 29 | if (it.isActivated) { 30 | appCompatImageView.setImageResource(it.planetActivateImage) 31 | textView.text = String.format("%d/%d",planetBean.needStars,planetBean.needStars) 32 | progressBar.progress = 100 33 | } else { 34 | appCompatImageView.setImageResource(it.planetNormalImage) 35 | progressBar.progress = 0 36 | textView.text = String.format("%d/%d",0,planetBean.needStars) 37 | } 38 | 39 | if (it.isActivated || it.canActivate) { 40 | button.setBackgroundResource(R.drawable.bg_award_exchange_enable) 41 | button.isEnabled = true 42 | } else { 43 | button.setBackgroundResource(R.drawable.bg_award_exchange_disenable) 44 | button.isEnabled = false 45 | } 46 | 47 | button.setOnClickListener { 48 | context.toast(planetBean.planetName) 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/kotlinview/StarGroupViewKotlin.kt: -------------------------------------------------------------------------------- 1 | package com.glong.demo.kotlinview 2 | 3 | import android.animation.ValueAnimator 4 | import android.annotation.SuppressLint 5 | import android.content.Context 6 | import android.util.AttributeSet 7 | import android.util.Log 8 | import android.view.MotionEvent 9 | import android.view.VelocityTracker 10 | import android.view.View 11 | import android.view.animation.DecelerateInterpolator 12 | import android.widget.FrameLayout 13 | import androidx.core.animation.addListener 14 | import androidx.core.view.children 15 | import org.jetbrains.anko.dip 16 | import kotlin.math.PI 17 | import kotlin.math.cos 18 | import kotlin.math.sin 19 | 20 | /** 21 | * 主页星球 22 | * @author guolong 23 | * @since 2019/8/18 24 | */ 25 | private const val START_ANGLE = 270f 26 | private const val SCALE_PX_ANGLE = 0.2f//px 转化为angle的比例 ps:一定要给设置一个转换,不然旋转的太欢了 27 | private const val AUTO_SWEEP_ANGLE = 0.1f//自动旋转角度 28 | 29 | class StarGroupViewKotlin : FrameLayout { 30 | constructor(context: Context) : super(context) 31 | constructor(context: Context, attrs: AttributeSet) : super(context, attrs) 32 | constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr) 33 | 34 | // 旋转的角度 35 | private var sweepAngle = 0f 36 | private var pathRadius = 0f 37 | 38 | /** 39 | * 自动滚动 40 | */ 41 | private val autoScrollRunnable = object : Runnable { 42 | override fun run() { 43 | sweepAngle += AUTO_SWEEP_ANGLE 44 | sweepAngle %= 360 // 取个模 防止sweepAngle爆表 45 | Log.d("guolong", "auto , sweepAngle == $sweepAngle") 46 | layoutChildren() 47 | postDelayed(this, 16) 48 | } 49 | } 50 | 51 | private val velocityAnim = ValueAnimator() // 滑动结束后的动画 52 | 53 | // 容器距离左上右下的距离 54 | private var padding: Int = context.dip(80) 55 | // 根据设计将子View整体上移 56 | private val childTranslateY = -context.dip(20) 57 | 58 | init { 59 | //通过isChildDrawingOrderEnable 动态改变子View的绘制顺序 60 | isChildrenDrawingOrderEnabled = true 61 | // postDelayed(autoScrollRunnable, 400) 62 | 63 | velocityAnim.apply { 64 | this.duration = 1000 65 | this.interpolator = DecelerateInterpolator() 66 | this.addUpdateListener { 67 | val value = it.animatedValue as Float 68 | sweepAngle += (value * SCALE_PX_ANGLE) // 乘以SCALE_PX_ANGLE是因为如果不乘 转得太欢了 69 | layoutChildren() 70 | } 71 | this.addListener(onEnd = { 72 | postDelayed(autoScrollRunnable, 16) 73 | }) 74 | } 75 | } 76 | 77 | override fun onLayout(b: Boolean, left: Int, top: Int, right: Int, bottom: Int) { 78 | pathRadius = (measuredWidth / 2 - padding).toFloat() 79 | layoutChildren() 80 | } 81 | 82 | private fun layoutChildren() { 83 | val childCount = childCount 84 | if (childCount == 0) return 85 | val averageAngle = if (centerView() == null) 360f / childCount else 360f / (childCount - 1) 86 | // START_ANGLE°开始画 87 | var number = 0 88 | for (index in 0 until childCount) { 89 | val child = getChildAt(index) 90 | val childWidth = child.measuredWidth 91 | val childHeight = child.measuredHeight 92 | 93 | if (child.tag == "center") { 94 | child.layout(measuredWidth / 2 - childWidth / 2, measuredHeight / 2 - childHeight / 2, 95 | measuredWidth / 2 + childWidth / 2, measuredHeight / 2 + childHeight / 2) 96 | continue 97 | } else { 98 | val angle = (START_ANGLE - averageAngle * number + sweepAngle).toDouble() * PI / 180 99 | val sin = sin(angle) 100 | val cos = cos(angle) 101 | val coordinateX = measuredWidth / 2 - pathRadius * cos 102 | val coordinateY = measuredHeight / 2 - pathRadius * sin * sin(PI / 9) // sin(PI/9)表示x轴方向倾斜的角度 103 | 104 | child.layout((coordinateX - childWidth / 2).toInt(), 105 | (coordinateY - childHeight / 2 + childTranslateY).toInt(), 106 | (coordinateX + childWidth / 2).toInt(), 107 | (coordinateY + childHeight / 2 + childTranslateY).toInt()) 108 | 109 | // 假设view的最小缩放是原来的0.3倍,则缩放比例和角度的关系是 110 | val scale = (1 - 0.3f) / 2 * (1 - sin(angle)) + 0.3 111 | child.scaleX = scale.toFloat() 112 | child.scaleY = scale.toFloat() 113 | number++ 114 | } 115 | } 116 | changeZ() 117 | } 118 | 119 | private fun centerView(): View? { 120 | return children.find { it.tag == "center" } 121 | } 122 | 123 | private fun changeZ() { 124 | val allChild = children.filter { it.tag != "center" }.sortedBy { it.scaleY }.toMutableList() 125 | val centerView = centerView() 126 | if (centerView != null) 127 | for (index in 0 until allChild.size) { 128 | if (allChild[index].scaleY > 0.5f) { 129 | allChild.add(index, centerView) 130 | break 131 | } 132 | } 133 | 134 | var order = 0.1f 135 | allChild.forEach { 136 | it.z = order 137 | order += 0.1f 138 | } 139 | } 140 | 141 | /** 142 | * 手势处理 143 | */ 144 | private var downX = 0f 145 | /** 146 | * 手指按下时的角度 147 | */ 148 | private var downAngle = sweepAngle 149 | // 速度追踪器 150 | private val velocity = VelocityTracker.obtain() 151 | 152 | @SuppressLint("ClickableViewAccessibility") 153 | override fun onTouchEvent(event: MotionEvent?): Boolean { 154 | val x = event?.x ?: 0f 155 | velocity.addMovement(event) 156 | when (event?.action) { 157 | MotionEvent.ACTION_DOWN -> { 158 | downX = x 159 | downAngle = sweepAngle 160 | 161 | // 取消动画和自动旋转 162 | velocityAnim.cancel() 163 | removeCallbacks(autoScrollRunnable) 164 | return true 165 | } 166 | MotionEvent.ACTION_MOVE -> { 167 | val dx = (downX - x) * SCALE_PX_ANGLE 168 | sweepAngle = (dx + downAngle) 169 | layoutChildren() 170 | } 171 | MotionEvent.ACTION_UP -> { 172 | velocity.computeCurrentVelocity(16) 173 | Log.d("guolong", "vX:${velocity.xVelocity}") 174 | // 速度为负值代表顺时针 175 | scrollByVelocity(velocity.xVelocity) 176 | postDelayed(autoScrollRunnable, 16) 177 | } 178 | } 179 | return super.onTouchEvent(event) 180 | } 181 | 182 | override fun onDetachedFromWindow() { 183 | super.onDetachedFromWindow() 184 | velocity.recycle() 185 | } 186 | 187 | private fun scrollByVelocity(velocity: Float) { 188 | val end = if (velocity < 0) -AUTO_SWEEP_ANGLE else 0f 189 | velocityAnim.setFloatValues(-velocity, end) 190 | velocityAnim.start() 191 | } 192 | 193 | fun pause() { 194 | velocityAnim.cancel() 195 | removeCallbacks(autoScrollRunnable) 196 | } 197 | 198 | fun start() { 199 | postDelayed(autoScrollRunnable, 16) 200 | } 201 | } 202 | -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/kotlinview/SunView.kt: -------------------------------------------------------------------------------- 1 | package com.glong.demo.kotlinview 2 | 3 | import android.content.Context 4 | import android.util.AttributeSet 5 | import android.view.LayoutInflater 6 | import android.view.animation.AnimationUtils 7 | import android.widget.FrameLayout 8 | import com.glong.demo.R 9 | import kotlinx.android.synthetic.main.layout_sun_view.view.* 10 | 11 | /** 12 | * @author guolong 13 | * @since 2019/8/19 14 | */ 15 | class SunView : FrameLayout { 16 | constructor(context: Context) : super(context) 17 | constructor(context: Context, attrs: AttributeSet?) : super(context, attrs) 18 | constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr) 19 | 20 | init { 21 | LayoutInflater.from(context).inflate(R.layout.layout_sun_view,this) 22 | iv_sun_light.startAnimation(AnimationUtils.loadAnimation(context, R.anim.sun_anim)) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/src/main/java/com/glong/demo/view/StarGroupView.java: -------------------------------------------------------------------------------- 1 | package com.glong.demo.view; 2 | 3 | import android.animation.ValueAnimator; 4 | import android.annotation.SuppressLint; 5 | import android.content.Context; 6 | import android.util.AttributeSet; 7 | import android.util.Log; 8 | import android.view.MotionEvent; 9 | import android.view.VelocityTracker; 10 | import android.view.View; 11 | import android.view.animation.DecelerateInterpolator; 12 | import android.widget.FrameLayout; 13 | 14 | import androidx.annotation.NonNull; 15 | import androidx.annotation.Nullable; 16 | 17 | import java.util.ArrayList; 18 | import java.util.Collections; 19 | import java.util.Comparator; 20 | import java.util.List; 21 | 22 | /** 23 | * 行星和太阳的父容器 24 | * 25 | * @author guolong 26 | * @since 2019/8/20 27 | */ 28 | public class StarGroupView extends FrameLayout { 29 | 30 | // 从这个角度开始画View ,可以调整 31 | private static final float START_ANGLE = 270f; // 270° 32 | // 父容器的边界 单位dp 33 | private static final int PADDING = 150; 34 | // 绕x轴旋转的角度 70°对应的弧度 35 | private static final double ROTATE_X = Math.PI * 7 / 18; 36 | //自动旋转角度,16ms(一帧)旋转的角度,值越大转的越快 37 | private static final float AUTO_SWEEP_ANGLE = 0.3f; 38 | //px转化为angle的比例 ps:一定要给设置一个转换,不然旋转的太欢了 39 | private static final float SCALE_PX_ANGLE = 0.2f; 40 | // 以上几个值都可以根据最终效果调整 41 | 42 | /** 43 | * 角度偏差值 44 | */ 45 | private float sweepAngle = 0f; 46 | 47 | /** 48 | * 行星轨迹的半径 49 | */ 50 | private float mRadius; 51 | 52 | /** 53 | * 父容器的边界 ,单位px 54 | */ 55 | private int mPadding; 56 | 57 | private Runnable autoScrollRunnable = new Runnable() { 58 | @Override 59 | public void run() { 60 | sweepAngle += AUTO_SWEEP_ANGLE; 61 | // 取个模 防止sweepAngle爆表 62 | sweepAngle %= 360; 63 | Log.d("guolong", "auto , sweepAngle == " + sweepAngle); 64 | layoutChildren(); 65 | postDelayed(this, 16); 66 | } 67 | }; 68 | 69 | public StarGroupView(@NonNull Context context) { 70 | this(context, null); 71 | } 72 | 73 | public StarGroupView(@NonNull Context context, @Nullable AttributeSet attrs) { 74 | this(context, attrs, 0); 75 | } 76 | 77 | public StarGroupView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) { 78 | super(context, attrs, defStyleAttr); 79 | // 边距转换为px 80 | mPadding = (int) (context.getResources().getDisplayMetrics().density * PADDING); 81 | setChildrenDrawingOrderEnabled(true); 82 | initAnim(); 83 | postDelayed(autoScrollRunnable, 100); 84 | } 85 | 86 | private void initAnim() { 87 | velocityAnim.setDuration(1000); 88 | velocityAnim.setInterpolator(new DecelerateInterpolator()); 89 | velocityAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 90 | @Override 91 | public void onAnimationUpdate(ValueAnimator animation) { 92 | float value = (float) animation.getAnimatedValue(); 93 | // 乘以SCALE_PX_ANGLE是因为如果不乘 转得太欢了 94 | sweepAngle += (value * SCALE_PX_ANGLE); 95 | layoutChildren(); 96 | } 97 | }); 98 | } 99 | 100 | @Override 101 | protected void onLayout(boolean changed, int left, int top, int right, int bottom) { 102 | // super.onLayout(changed, left, top, right, bottom); 103 | mRadius = (getMeasuredWidth() / 2f - mPadding); 104 | layoutChildren(); 105 | } 106 | 107 | private void layoutChildren() { 108 | int childCount = getChildCount(); 109 | if (childCount == 0) return; 110 | // 行星之间的角度 111 | View centerView = centerView(); 112 | float averageAngle; 113 | if (centerView == null) { 114 | averageAngle = 360f / childCount; 115 | } else { 116 | // centerView 不参与计算角度 117 | averageAngle = 360f / (childCount - 1); 118 | } 119 | 120 | int number = 0; 121 | for (int index = 0; index < childCount; index++) { 122 | View child = getChildAt(index); 123 | int childWidth = child.getMeasuredWidth(); 124 | int childHeight = child.getMeasuredHeight(); 125 | 126 | // 如果是centerView 直接居中布局 127 | if ("center".equals(child.getTag())) { 128 | child.layout(getMeasuredWidth() / 2 - childWidth / 2, getMeasuredHeight() / 2 - childHeight / 2, 129 | getMeasuredWidth() / 2 + childWidth / 2, getMeasuredHeight() / 2 + childHeight / 2); 130 | } else { 131 | // 第index 个子View的角度 132 | double angle = (START_ANGLE - averageAngle * number + sweepAngle) * Math.PI / 180; 133 | double sin = Math.sin(angle); 134 | double cos = Math.cos(angle); 135 | 136 | double coordinateX = getMeasuredWidth() / 2f - mRadius * cos; 137 | // * Math.cos(ROTATE_X) 代表将y坐标转换为旋转之后的y坐标 138 | double coordinateY = getMeasuredHeight() / 2f - mRadius * sin * Math.cos(ROTATE_X); 139 | 140 | child.layout((int) (coordinateX - childWidth / 2), 141 | (int) (coordinateY - childHeight / 2), 142 | (int) (coordinateX + childWidth / 2), 143 | (int) (coordinateY + childHeight / 2)); 144 | 145 | // 假设view的最小缩放是原来的0.3倍,则缩放比例和角度的关系是 146 | float scale = (float) ((1 - 0.3f) / 2 * (1 - Math.sin(angle)) + 0.3f); 147 | child.setScaleX(scale); 148 | child.setScaleY(scale); 149 | number++; 150 | } 151 | } 152 | 153 | changeZ(); 154 | } 155 | 156 | /** 157 | * 改变子View的z值以改变子View的绘制优先级,z越大优先级越低(最后绘制) 158 | */ 159 | private void changeZ() { 160 | View centerView = centerView(); 161 | float centerViewScaleY = 1f; 162 | if (centerView != null) { 163 | centerViewScaleY = centerView.getScaleY(); 164 | centerView.setScaleY(0.5f); 165 | } 166 | List children = new ArrayList<>(); 167 | for (int i = 0; i < getChildCount(); i++) { 168 | children.add(getChildAt(i)); 169 | } 170 | Collections.sort(children, new Comparator() { 171 | @Override 172 | public int compare(View o1, View o2) { 173 | return (int) ((o1.getScaleY() - o2.getScaleY()) * 1000000); 174 | } 175 | }); 176 | float z = 0.1f; 177 | for (int i = 0; i < children.size(); i++) { 178 | children.get(i).setZ(z); 179 | z += 0.1f; 180 | } 181 | if (centerView != null) { 182 | centerView.setScaleY(centerViewScaleY); 183 | } 184 | } 185 | 186 | /** 187 | * 获取centerView 188 | * 189 | * @return 太阳 190 | */ 191 | private View centerView() { 192 | for (int i = 0; i < getChildCount(); i++) { 193 | View child = getChildAt(i); 194 | if ("center".equals(child.getTag())) { 195 | return child; 196 | } 197 | } 198 | return null; 199 | } 200 | 201 | 202 | /** 203 | * 手势处理 204 | */ 205 | private float downX = 0f; 206 | /** 207 | * 手指按下时的角度 208 | */ 209 | private float downAngle = sweepAngle; 210 | /** 211 | * 速度追踪器 212 | */ 213 | private VelocityTracker velocity = VelocityTracker.obtain(); 214 | /** 215 | * 滑动结束后的动画 216 | */ 217 | private ValueAnimator velocityAnim = new ValueAnimator(); 218 | 219 | @SuppressLint("ClickableViewAccessibility") 220 | @Override 221 | public boolean onTouchEvent(MotionEvent event) { 222 | float x = event.getX(); 223 | velocity.addMovement(event); 224 | switch (event.getAction()) { 225 | case MotionEvent.ACTION_DOWN: 226 | downX = x; 227 | downAngle = sweepAngle; 228 | 229 | // 取消动画和自动旋转 230 | velocityAnim.cancel(); 231 | removeCallbacks(autoScrollRunnable); 232 | return true; 233 | case MotionEvent.ACTION_MOVE: 234 | float dx = downX - x; 235 | sweepAngle = (dx * SCALE_PX_ANGLE + downAngle); 236 | layoutChildren(); 237 | break; 238 | case MotionEvent.ACTION_UP: 239 | velocity.computeCurrentVelocity(16); 240 | // 速度为负值代表顺时针 241 | scrollByVelocity(velocity.getXVelocity()); 242 | postDelayed(autoScrollRunnable, 16); 243 | } 244 | return super.onTouchEvent(event); 245 | } 246 | 247 | private void scrollByVelocity(float velocity) { 248 | float end; 249 | if (velocity < 0) 250 | end = -AUTO_SWEEP_ANGLE; 251 | else 252 | end = 0f; 253 | velocityAnim.setFloatValues(-velocity, end); 254 | velocityAnim.start(); 255 | } 256 | 257 | public void pause() { 258 | velocityAnim.cancel(); 259 | removeCallbacks(autoScrollRunnable); 260 | } 261 | 262 | public void start() { 263 | postDelayed(autoScrollRunnable, 16); 264 | } 265 | } 266 | -------------------------------------------------------------------------------- /app/src/main/res/anim/sun_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bg_award_exchange_disenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/bg_award_exchange_disenable.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bg_award_exchange_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/bg_award_exchange_enable.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_main_award.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/ic_main_award.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/ic_sun.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_sun_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/ic_sun_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_diqiu_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_diqiu_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_diqiu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_diqiu_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_haiwagnxing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_haiwagnxing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_haiwangxing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_haiwangxing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_huoxing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_huoxing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_huoxing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_huoxing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_jinxing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_jinxing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_jinxing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_jinxing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_muxing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_muxing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_muxing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_muxing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_shuixing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_shuixing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_shuixing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_shuixing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_tianwangxing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_tianwangxing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_tianwangxing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_tianwangxing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_tuxing_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_tuxing_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_tuxing_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_tuxing_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_yueqiu_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_yueqiu_activated.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/planet_yueqiu_mormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glongdev/Demos/eda920483a68be91dcf2e471e3fa6d2c905d849a/app/src/main/res/drawable-xxhdpi/planet_yueqiu_mormal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/drawable_home_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 75 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/progressbar_h_shape1.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_land.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 18 | 19 | 26 | 27 | 34 | 35 | 42 | 43 | 50 | 51 | 58 | 59 | 66 | 67 | 74 | 75 | 82 | 83 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_land_star.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 15 | 16 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |