1.注解插件ButterKnife Zelezny的使用与安装
1.1.下载安装
Settings——>Plugins——>Browse repositores——>搜索butterknife——>安装ButterKnife Zelezny
——>重启
1.2.使用:
配置@AhView(R.layout.XXX)——>鼠标右键——>Generate——>Generate Butterknife Injections——>选择
要生成的注解以及点击事件
(关联 compile 'com.jakewharton:butterknife:5.1.1')
2.GsonFormat的使用(Json生成,实体类生成):
2.1.下载安装
Settings——>Plugins——>Browse repositores——>搜索GsonFormat——>安装GsonFormat——>重启
2.2.使用:
复制Json数据——>右键鼠标——>Generate——>GsonFormat——>黏贴json数据——>OK
3.Android命名规范
3.1.layout命名:
以activity开头,如:activity_模块名_页面名.xml(特殊情况,或者页面较少,可以不用模块名)
3.2.fragment命名
以fragment开头, 如:framgent_模块名_页面名.xml(特殊情况,或者页面较少,可以不用模块名)
3.3listView或者gridView的item命名:
以item开头, 如:item_模块名_页面名.xml(特殊情况,或者页面较少,可以不用模块名)
3.4.layout中id命名:
以m开头, 如:RelativeLayout m_rl_功能名,TextView m_tv_功能名