1.GsonFormat
可以自動將json轉換為Java Bean對象

image
使用方法:快捷鍵Alt+S也可以使用Alt+Insert選擇GsonFormat
2.Android ButterKnife Zelezny
配合ButterKnife實現(xiàn)注解,從此不用寫findViewById。在Activity,F(xiàn)ragment,Adapter中選中布局xml的資源id自動生成butterknife注解。

image
使用方法:Ctrl+Shift+B或Alt+Insert選擇圖上所示選項
3.RemoveButterKnife
ButterKnife這個第三方庫每次更新之后,綁定view的注解都會改變,從bind,到inject,再到bindview,搞得很多人都不敢升級,一旦升級,就會有巨量的代碼需要手動修改,非常痛苦
當我們有一些非常棒的代碼需要拿到其他項目使用,但是我們發(fā)現(xiàn),那個項目對第三方庫的使用是有限制的,我們不能使用butterknife,這時候,我們又得從注解改回findviewbyid
針對上面的兩種情況,如果view比較少還好說,如果有幾十個view,那么我們一個個的手動刪除注解,寫findviewbyid語句,簡直是一場噩夢(別問我為什么知道這是噩夢)
所以,這種有規(guī)律又重復簡單的工作為什么不能用一個插件來實現(xiàn)呢?于是RemoveButterKnife的想法就出現(xiàn)了。
image
4.CodeGlance
實現(xiàn)像代碼一樣預覽

image
5.ADB WIFI
實現(xiàn)WiFi調試app

image
6.Android Styler
根據(jù)xml自動生成style代碼的插件

image

image

image
使用方法:
- a. copy lines with future style from your layout.xml file
- b. paste it to styles.xml file with Ctrl+Shift+D (or context menu)
- c. enter name of new style in the modal window
- d. your style is prepared!
7.LeakCanary
在開發(fā)階段可以很快速的找到內(nèi)存泄漏問題
LeakCanary中文參考
更多插件參考:傳送門