美文网首页
Android Studio设置小技巧

Android Studio设置小技巧

作者: googleKing | 来源:发表于2019-08-16 17:20 被阅读0次

    1、添加文件描述

    step1: 点击 setting>>Editor>>File and code Templates  (ctrl+alt+s)

    step2: 选中includes标签

    step3: 点击File Header

    step4: 在右边输入框输入以下内容

    /**

    * @author ${USER}

    * @date ${DATE} ${TIME}

    * @description

    */

    点击应用-->点击ok即可

    2、添加方法注释

    step1: 点击 setting>>Editor>>File and code Templates

    step2: 选中includes标签

    step3: 点击绿色的”+”新建一个名为”Method Header”的子元素

    step4: 选中新建的”Method Header”,在右边输入框输入以下内容,点击OK

    /**

      * description: <一句话功能简述>

      * @param [参数1] [参数1说明]

      * @param [参数2] [参数2说明]

      * @return [返回类型说明]

      * @exception/throws [违例类型] [违例说明]

      * @see [类、类#方法、类#成员]

      */

    点击应用-->点击ok

    3、Logcat 颜色配置

    File->Settings-> Editor -> Colors Scheme -> Android Logcat 或在上面的搜索框中输入Logcat 点中Verbose , Info, Debug等选项,然后在后面将右下角 Use Inberited attributes 去掉勾选 再将 Foreground 前的复选框选上,就可以双击后面的框框去选择颜色了 Apply–>OK

    颜色配置如下:

    Log级别色值

          VERBOSE    BBBBBB

          DEBUG        0070BB

          INFO          48BB31

          WARN        BBBB23

          ERROR        FF0006

          ASSERT      8F0005

    也可以按照自己喜欢的颜色进行配置哦!

    相关文章

      网友评论

          本文标题:Android Studio设置小技巧

          本文链接:https://www.haomeiwen.com/subject/pdpqsctx.html