zoukankan      html  css  js  c++  java
  • Android Studio Tips and Tricks

    Android Studio Delete Module

    1.选中Module右击,选择 Open Module Settings,打开Project Structure 窗空。(或者选中Module,按F4打开Project Structure窗口)

    2.选中要移除的Module,点击 “-”  Remove Module,然后点击OK。

    3.再次选中Module右击,就会出现Delete操作,点击Delete移除Module。(或者选中Module按Delete键)

    Make Project vs  Rebuild Project

    The Build > Make Project option compiles all the source files in the entire project that have been modified since the last compilation.

    The Build > Rebuild Project option recomplies all the source files in the project.

    • Compile <compilation_scope>. All the source files in the specified scope are compiled. The scope in this case may be a file, a package, etc.
    • Make Project. All the source files in the entire project that have been modified since the last compilation are compiled. Dependent source files, if appropriate, are also compiled. Additionally, the tasks tied to the compilation or make process on modified sources are performed. For example, EJB validation is performed if the corresponding option is enabled on the Validation page.
    • Make Module. Compiled are all the source files that have been modified since the last compilation in the selected module as well as in all the modules it depends on recursively.
    • Rebuild Project. All the source files in the project are recompiled. This may be necessary when the classpath entries have changed, for example, SDKs or libraries being used added, removed or altered.

    Content Assist    Class Name Completion

    Alt+/                 Ctrl+Alt+Space  

     

    4.Delete line   Copy Line

    CTRL + Y  CTRL + D (Win)

    CMD + Backspace CMD + D(Mac)

     

    alt + f7 = find usage

    ctrl + q = quick documentation

    shift + f6 = refactor

    ctrl + o = overide

    ctrl + i = implement

    ctrl + space = code completion

    ctrl + shift + space = smarttype

    ctrl + w = select word

    alt + ins = generete code (getter, setter, constructor

    ctrl + alt + l = reformat code

    ctrl + y = delete line

    ctrl + alt + t = surround with

    alt + shift + up / down = move line up / down

    ctrl + d = copy line

    ctrl + h = Type Hierarchy

    command+F12 = File Structure

    psvm = public static void main

    sout = System.out.println

  • 相关阅读:
    jar包打包成exe示例(基于maven项目)
    助教小工具
    HUST软件测试1504班: 第0周作业成绩
    软件质量与测试2018春第0周作业1:开设博客
    RobotFramework学习-问题
    Java读取本地文件乱码的解决方案
    滑动窗口模板题(对读写性能要求贼高)
    Invalid index name [xxx], must be lowercase
    Java自动装箱和自动拆箱的理解
    TKMabatis坑
  • 原文地址:https://www.cnblogs.com/ZacharyHodgeZou/p/4555200.html
Copyright © 2011-2022 走看看