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

  • 相关阅读:
    A__Writeup_杂项 “百越杯”第四届福建省高校网络空间安全大赛——致我的战队HeroCat的所有成员
    A_由局域网到广域网的探索-------正在更新中ing
    B_由迷茫转向理性
    CTF__(1)web之Cookie
    网络安全常识介绍__(1)黑客获取密码的介绍
    AQS
    生产者-消费者模式
    synchronized修饰static方法与非static方法的区别
    Java内存溢出和内存泄露
    final、finally与finalize的区别
  • 原文地址:https://www.cnblogs.com/ZacharyHodgeZou/p/4555200.html
Copyright © 2011-2022 走看看