Android 常用的库

1、圆角图片  

implementation 'de.hdodenhof:circleimageview:3.0.0'

2、沉浸式状态栏

     UltimateBar

implementation 'com.github.zackratos.ultimatebar:ultimatebar3:3.1.1'

     StatusBarUtil

compile 'com.jaeger.statusbarutil:library:1.5.1'

3、UI库集合:https://github.com/wasabeef/awesome-android-ui

4、折线图、饼状图、PAndroidChart

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}

5、屏幕适配

implementation 'me.jessyan:autosize:1.1.2'
发布了5 篇原创文章 · 获赞 4 · 访问量 5276

猜你喜欢

转载自blog.csdn.net/wo122282967/article/details/89354387