Mastodon

Android Studio QuickSheet

Quick sheet for Android Studio
COMMAND EXPLAINATION
Shift Twice Search everywhere
CTRL+E / Command+E Recently opened files
CTRL+Shift+A / Command+Shift+A Find action
CTRL+ALT+SHIFT+N / Command+Option+O Search by Symbol Name
ALT+Insert / Command+N Generate Code
CTRL+O / Command+O Override Methods
CTRL+Y / Command+Backspace Delete Line at Cursor
CTRL+Space / Command+Space Basic Code Completion
CTRL+ALT+L / Command+Option+L Reformat Code
CTRL+Shift+UP/DOWN / Command+Shift+UP/DOWN Move the whole line up or down

If any of your favorite shortcut is missed and want to be included, please mention in the comments section. 

Building own executable in Android

 

Required tools

 Download and install Sourcery G++ Lite Edition for ARM
 Pull the android libs for dynamic linking using the script [ PullAndroidSysLibs.bat ]
 Download the build script and copy in your working folder [build_nd_push.bat]
 Download the assembly [crt.S] file for startup code and copy in your working folder.  Article from [ 1 ]

Continue reading Building own executable in Android