Recently, the company organized project team members to develop an Android project demo, no one has andoid development experience, are developing C #. Although the project requirements are not very high, but for those who do not have this experience, the first step is the most difficult.
The project lasted one months, 4 people developed, the final line into a usable demo, the overall effect is very good. This one of the online "Imitation NetEase client Demo" There is also learning "Crazy Android", a lot of harvest, here use a few articles to do a project experience summary, there is more from the C # Programmer's point of view to understand some of the similarities and differences of Android.
Article directory:
CSharp programmers Learn Android Development---1. Andriodide, master tools use CSharp Programmer to learn Android development---2. Shortcut keys for personal summary
A more comprehensive introduction: http://www.cnblogs.com/strivers/archive/2011/02/06/1949477.html
Http://wenku.baidu.com/link?url=lsGFDZd2y14AMB6Bo9x2ZnOH4ZFtorsELAMXNNZtdFLcROu9wJvNB70klYe_EjEJG7Pla8R_ Brqmoolbfgqzzzmgz30nyvt-widh0i5qarw
Ctrl+1 Quick FIX: The most common is to change the name of the variable, and then all references to the name of the place automatically changed, similar to the small down arrow in VS. Note Type to select "Rename in Workspace"
ctrl+z/y rollback or continuation: This doesn't have to be explained much, similar to the ctrl+z/u in VS
ctrl+/comments The current line, and then cancels the comment: comments or uncomment, which are either available or not available in the current code.
Ctrl+shift+f formatting The current code: similar to the collation code in VS, the format can be customized, this content will be described elsewhere in this article, very useful features.
Ctrl+shift+o Operation Import Reference: The function is the missing import statement is added, the extra import statement is deleted, there is code neat person's medicine.
Ctrl+shift+s Save all unsaved files: Save the code at any time, personally feel that direct ctrl+s will be better, of course, all the preservation is also a good habit.
ctrl+shift+/code Comment: In the code window is this/*~*/comment, in the JSP file window is <!--~-->, explaining the function or layout, similar to the "///" in VS
F3 jumps to the declaration or definition of the place, Open/show Declaration.
F5 One-step debugging into the inside of the function.
F6 single-Step debugging does not enter the function inside, if installed PowerWord 2006 to the "Take the word switch" shortcut keys to change to other.
The F7 is returned from inside the function to the call point.
F8 continues to the next breakpoint.
CSharp programmers Learn Android Development---2. Shortcut keys for personal summary