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

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 Studio 新建文件修改Created by后面的名称方法

Created by

猜你喜欢

转载自blog.csdn.net/keke921231/article/details/78922980