随笔分类 -  Android

摘要:1 package com.beantechs.beanphone.common.utils.log 2 3 import android.app.ActivityManager 4 import android.app.Application 5 import android.content.Co 阅读全文
posted @ 2021-12-07 15:50 大大章鱼 阅读(122) 评论(0) 推荐(0)
摘要:1 引言 想必学过Java的人都知道一个@Slf4j使用得多么的舒服: 1 @Slf4j 2 public class TestController{ 3 @GetMapping("/test") 4 public String test(){ 5 log.debug("debug"); 6 ret 阅读全文
posted @ 2021-12-07 15:47 大大章鱼 阅读(298) 评论(0) 推荐(0)
摘要:1、View Binding 一、Enabling View Binding 1 android { 2 3 // module级别的build.gradle文件中添加下名的配置 4 // 会自动为xml文件生成binding class 5 // 命名规则是Pascal case + Bindin 阅读全文
posted @ 2021-12-07 11:37 大大章鱼 阅读(250) 评论(0) 推荐(0)