Help -> Productivity Guide.
- Shift+⌘+A -> Look up any action with it's keymap.
- Shift+Shift -> Look for everything.
- ⌘+N -> New files.
- Use live templates.
- You can create your own quick lists.
- ⌘+E -> Recents files.
| <?xml version="1.0"?> | |
| <!DOCTYPE module PUBLIC | |
| "-//Puppy Crawl//DTD Check Configuration 1.3//EN" | |
| "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> | |
| <!-- | |
| Checkstyle configuration that checks the sun coding conventions from: | |
| - the Java Language Specification at |
| fastboot flash boot boot.img && fastboot flash cache cache.img && fastboot flash recovery recovery.img && fastboot flash system system.img && fastboot flash vendor vendor.img |
| private volatile FieldType field; | |
| FieldType getField() { | |
| FieldType result = field; | |
| if (result == null) { // 1st check (no lock) | |
| synchronized (this) { | |
| result = field; | |
| if (result == null) // 2nd check (w/ lock) |
| export JAVA_HOME=`/usr/libexec/java_home -v 1.6` | |
| or | |
| export JAVA_HOME=`/usr/libexec/java_home -v 1.7` | |
| or | |
| export JAVA_HOME=`/usr/libexec/java_home -v 1.8` |
| boolean isDebuggable = (0 != (getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE)); |
##Blue
##Red
| <Toolbar | |
| android:id="@+id/toolbar" | |
| android:layout_height="128dp" | |
| android:layout_width="match_parent" | |
| android:minHeight="?android:attr/actionBarSize" | |
| android:background="?android:attr/colorPrimary" | |
| android:gravity="bottom" /> |