Android Studio常用插件

1.Android ButterKnife Zelezny  ButterKnife注入插件,自动生成控件注入代码,不过新版的ButterKnife用不了。因为新版注入已经改为Bind进行注入。

2.Android Material Design Icon Generator 是一个可以生成Material Design图标的插件。

Android Studio常用插件_第1张图片

3.GsonFormat 可以将Json自动转化成能用Gson解析的类。

Android Studio常用插件_第2张图片
Android Studio常用插件_第3张图片

4.ECtranslation  可以在Android Studio IDE 内直接将英文翻译成中文

5.Genymotion在Android Studio中的配置,首先下载Genymotion插件,点击设置界面最下面的Other Setting,然后输入Genymotion的安装路径。

6.SelectorChapek  一款帮助我们快速完成Selector的插件。要注意图片命名

File name suffix            Drawable state

_normal                          (default state)

_pressed                         state_pressed

_focused                          state_focused

_disabled                          state_enabled (false)

_checked                           state_checked

_selected                           state_selected

_hovered                             state_hovered

_checkable                          state_checkable

_activated                             state_activated

_windowfocused                   state_window_focused

Android Studio常用插件_第4张图片

7.Android Studio Prettify 从布局文件中生成对View的声明,帮助我们自动生成findViewById这种代码。注意一定要选中view点击右键。

Android Studio常用插件_第5张图片
Android Studio常用插件_第6张图片

8.Android Code Generator  根据布局文件快速生成对应的Activity,Fragment,Adapter,Menu。在xml布局中点击右键。

Android Studio常用插件_第7张图片

9.Android Toolbox Plugin 通过xml布局文件生成ViewHolder或者ViewPresenter,生成ButterKnife注解。

10.Lifecycle Sorter 可以根据Activity或者Fragment的生命周期对其生命周期方法位置进行先后排序。

11.Android Methods Count 统计Android依赖库中方法的总个数。

更全面看这里 https://ydmmocoo.github.io/2016/06/28/Android-Studio%E6%8F%92%E4%BB%B6%E6%95%B4%E7%90%86/


你可能感兴趣的:(Android Studio常用插件)