您的位置:首页 > 移动开发 > Android开发

Android 开发工具(以后持续更新)

2017-12-28 16:02 447 查看
android 开发碰到的好一点的 框架和 Android studio 很好用的插件 ,记录下来,以防后面要用,欢迎补充。

工具类:
https://github.com/jonfinerty/Once (多少时间执行一次)
https://github.com/afollestad/material-dialogs (多种多样的弹出框)
https://github.com/DreaminginCodeZH/MaterialProgressBar (多种多样的进度条)
https://github.com/laobie/StatusBarUtil (状态栏,可支持半透明和全透明)
https://github.com/greenrobot/EventBus  https://github.com/WangGanxin/LoadDataLayout (加载不同情况的界面)
https://github.com/greenrobot/greenDAO (数据库)
https://github.com/iwgang/CountdownView (倒计时)

com.github.open-android:FragmentTabhostUtils:0.5.0(导航栏)

compile 'com.belerweb:pinyin4j:2.5.0'(汉字转拼音)

android studio 插件:1.Key Promoter(鼠标点出来的功能时候,会提示如何按键)
     2.String Manipulation(自动驼峰式命名,变大小写,Alt+M弹出提示框)

       3.ButterKnife Zelezny(配合ButterKnife快速设置view的id,相当方便,build文件中添加:

compile 'com.jakewharton:butterknife:7.0.0',不能高于8.0.0,因为不支持)

                4.lombok Plugin(减少实体类的代码,在类名上方加@Data即可,不需要再写构造方法,get,set方法,toString方法,在build文件中添加

compile 'javax.annotation:javax.annotation-api:1.2'

compile 'org.projectlombok:lombok:1.16.6'
即可)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android