├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hbh │ │ └── customview │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hbh │ │ │ └── customview │ │ │ ├── MainActivity.kt │ │ │ ├── util │ │ │ └── UIUtil.kt │ │ │ └── view │ │ │ ├── ExperienceBar.kt │ │ │ ├── cloudMusic │ │ │ ├── MusicActivity.kt │ │ │ └── MusicAnimationView.kt │ │ │ └── levelRecyclerView │ │ │ ├── LevelDividerItemDecoration.kt │ │ │ └── LevelRecyclerView.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxhdpi │ │ ├── icon_vip_level_0.png │ │ ├── icon_vip_level_1.png │ │ ├── icon_vip_level_10.png │ │ ├── icon_vip_level_2.png │ │ ├── icon_vip_level_3.png │ │ ├── icon_vip_level_4.png │ │ ├── icon_vip_level_5.png │ │ ├── icon_vip_level_6.png │ │ ├── icon_vip_level_7.png │ │ ├── icon_vip_level_8.png │ │ └── icon_vip_level_9.png │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_music.xml │ │ └── layout_item_level.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-anydpi-v33 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── hbh │ └── customview │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | CustomView -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MyCustomView 2 | 自己做的自定义View集合 3 | 4 | ### ExperienceBar 5 | [掘金:https://juejin.cn/post/7260440577178468413](https://juejin.cn/post/7260440577178468413) 6 | 7 | ![img_v2_8330ee62-9efd-4cb8-b174-9ce54780db1g](https://github.com/Coder-HuangBH/MyCustomView/assets/51867928/e0232b4a-ecaf-402e-a179-60d71bdb0cb6) 8 | 9 | ### LevelRecyclerView 10 | 11 | [掘金:https://juejin.cn/post/7291474028744278016](https://juejin.cn/post/7291474028744278016) 12 | 13 | ### MusicAnimationView 14 | ![1699195407121](https://github.com/Coder-HuangBH/MyCustomView/assets/51867928/7b77e4ef-2b62-4c3b-bf64-187fb33e52d7) 15 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | id 'org.jetbrains.kotlin.android' 4 | } 5 | 6 | android { 7 | namespace 'com.hbh.customview' 8 | compileSdk 33 9 | 10 | defaultConfig { 11 | applicationId "com.hbh.customview" 12 | minSdk 24 13 | targetSdk 33 14 | versionCode 2 15 | versionName "1.1" 16 | 17 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 18 | } 19 | 20 | buildTypes { 21 | release { 22 | minifyEnabled false 23 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 24 | } 25 | } 26 | compileOptions { 27 | sourceCompatibility JavaVersion.VERSION_1_8 28 | targetCompatibility JavaVersion.VERSION_1_8 29 | } 30 | kotlinOptions { 31 | jvmTarget = '1.8' 32 | } 33 | } 34 | 35 | dependencies { 36 | 37 | implementation 'androidx.core:core-ktx:1.7.0' 38 | implementation 'androidx.appcompat:appcompat:1.4.1' 39 | implementation 'com.google.android.material:material:1.5.0' 40 | implementation 'androidx.constraintlayout:constraintlayout:2.1.3' 41 | testImplementation 'junit:junit:4.13.2' 42 | androidTestImplementation 'androidx.test.ext:junit:1.1.3' 43 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' 44 | 45 | implementation "io.github.cymchad:BaseRecyclerViewAdapterHelper:4.0.1" 46 | implementation 'de.hdodenhof:circleimageview:3.1.0' 47 | implementation 'com.github.bumptech.glide:glide:4.16.0' 48 | } -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hbh/customview/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.hbh.customview 2 | 3 | import androidx.test.platform.app.InstrumentationRegistry 4 | import androidx.test.ext.junit.runners.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.getInstrumentation().targetContext 22 | assertEquals("com.hbh.customview", appContext.packageName) 23 | } 24 | } -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/hbh/customview/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.hbh.customview 2 | 3 | import android.content.Context 4 | import android.os.Bundle 5 | import android.view.ViewGroup 6 | import android.widget.Button 7 | import android.widget.ImageView 8 | import androidx.appcompat.app.AppCompatActivity 9 | import com.chad.library.adapter.base.BaseQuickAdapter 10 | import com.chad.library.adapter.base.viewholder.QuickViewHolder 11 | import com.hbh.customview.view.ExperienceBar 12 | import com.hbh.customview.view.levelRecyclerView.LevelRecyclerView 13 | 14 | class MainActivity : AppCompatActivity() { 15 | override fun onCreate(savedInstanceState: Bundle?) { 16 | super.onCreate(savedInstanceState) 17 | setContentView(R.layout.activity_main) 18 | 19 | initExperienceBar() 20 | 21 | initLevelRecyclerView() 22 | } 23 | 24 | private fun initExperienceBar() { 25 | val experience_bar = findViewById(R.id.experience_bar) 26 | 27 | val a = 5 28 | val b = listOf(10,50,100,250,500,1000) 29 | val btn_test1 = findViewById