您的位置:首页 > 其它

AS常用插件-持续更新

2016-04-29 01:05 363 查看

之前的系列文章:

AS主题+配置备份+Logcat颜色配置

AS插件-Android Drawable Importer

AS插件-GsonFormat

AS插件-android-selector-chapek

AS插件-Android Parcelable code generator.

这里就不单独的将自己常用的插件一个一篇博文了,毕竟这种插件工具的使用是很简单的~

都是基于Window系统 囧~

adb-idea

支持直接在AS面板中进行ADB操作

Uninstall App

Kill App

Start App

Restart App

Clear App Data

Clear App Data and Restart

双击Shift弹出Search Everywhere,然后输入ADB



或者使用快捷键 ctrl + alt +a



Download and install ADB Idea directly from Intellij / Android Studio: Preferences/Settings->Plugins->Browse Repositories

Alternatively, you can dowload the plugin from the jetbrains plugin site and install it manually in: Preferences/Settings->Plugins->Install plugin from disk

android-material-design-icon-generator-plugin

详细安装请查看github指导



leakcanary

Square最近刚开源的一个非常有用的工具,强烈推荐,帮助你在开发阶段方便的检测出内存泄露的问题,使用起来更简单方便

Getting started:

In your build.gradle:

dependencies {

debugCompile ‘com.squareup.leakcanary:leakcanary-android:1.4-beta2’

releaseCompile ‘com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2’

testCompile ‘com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2’

}

In your Application class:

public class ExampleApplication extends Application {

@Override public void onCreate() {
super.onCreate();
LeakCanary.install(this);
}
}


You’re good to go! LeakCanary will automatically show a notification when an activity memory leak is detected in your debug build.

CheckStyle

请查看 http://blog.csdn.net/ownwell/article/details/49023727 ,博主写的很详细了,感谢分享。

知乎上大神们的回答
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: