Android 常用开发插件和框架

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_30552993/article/details/77878951

文章主要介绍本人开发过程中常见的库或框架及其引用。

虽然没有直接冲击视觉的效果图,不过好用的东西一般都是靠心去慢慢体会的。

1、 butterknife注解

compile ‘com.jakewharton:butterknife:7.0.1’

2、 图片加载

compile ‘com.nostra13.universalimageloader:universal-image-loader:1.9.5’

3、 网络请求库

compile ‘com.loopj.android:android-async-http:1.4.9’

4、漂亮的对话框

compile ‘cn.pedant.sweetalert:library:1.3’

注意:引用时要在AndroidManifest.xml中添加tools:replace…

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    .....>

    <application
        .....
        tools:replace="icon, label, theme">

    </application>

</manifest> 

5、二维码扫描

compile ‘cn.yipianfengye.android:zxing-library:2.2’

6、最强广告图片轮播控件

compile ‘com.youth.banner:banner:1.4.10’

7、图片选择器(GalleryFinal)

compile ‘cn.finalteam:galleryfinal:1.4.8.7’

8、压缩图片 ——> 压缩图片工具类

compile ‘me.shaohui.advancedluban:library:1.3.5’

9、SwitchButton

compile ‘com.github.zcweng:switch-button:0.0.3@aar’

10、沉浸式状态栏

compile ‘com.readystatesoftware.systembartint:systembartint:1.0.3’

11、加载动画控件(SpinKit )

compile ‘com.github.ybq:Android-SpinKit:1.1.0’

12、仿知乎浮动按钮菜单(FloatingActionButton)

compile ‘com.github.clans:fab:1.6.4’

13、标题栏和底部导航栏的出现与隐藏

compile ‘com.github.githubwing:ByeBurger:1.2.3’

14、最强日历包含农历

compile ‘com.necer.ncalendar:ncalendar:1.0.8’

15、节操视频播放器(支持mp4、m3u8等等)

compile ‘fm.jiecao:jiecaovideoplayer:5.8.1’

16、评星控件

compile ‘com.xingliuhua:xlhratingbar_lib:1.0.1’

17、未读数字提示(BadgeView)

compile ‘com.allenliu.badgeview:library:1.0.4’

18、弹幕效果

19、点赞+1效果,支持文本和图像

compile ‘com.wx.goodview:goodview:1.0.0’

20、Lottie动画库

implementation ‘com.airbnb.android:lottie:2.5.5’

推荐优质文章

猜你喜欢

转载自blog.csdn.net/qq_30552993/article/details/77878951