查看百度指数,“中台”两字的搜索量从2019年5月21日后开始陡增。 这天发生了什么?这天腾讯召开了“腾讯全球数字生态大会[https://des.qq.com/]”,在会上...
困扰1: 如何面对团队中的老资格员工和高能力员工? 确立目标: 考虑如何让大家把自己的才智发挥出来, 去达成一个共同的团队目标. 引导和支持大家. 自信心: 获得上级的改进建...
1. 定位到当前class file的具体哪一行: Command+L 2. 全局搜索: Shift+Command+f 3. 全局搜索class file : 双击Shift
** 获取Material Design的最新版本: https://github.com/material-components/material-components-a...
如果想让RecyclerView在透明的导航栏底部滚动,使用android:fitsSystemWindows="true"和android:clipToPadding="f...
android:fillViewport="true" 顾名思义可以看出是 填充视图窗口. 1. 如果不使用android:fillViewport="true", 会发现R...
1. Material design: https://material.io/components/date-pickers 2.Material design Icon:...
1. 定义一个file 文件, 里面的方法全部都是全局静态的. @file: JvmName("WeddingDatePickerDialog") // 文件名可以自定义,...
class PartialBoldTextView@JvmOverloads constructor( context: Context, attrs: Attrib...
@Transient 如果用transient声明一个实例变量,当对象存储时,它的值不需要维持。换句话来说就是,用transient关键字标记的成员变量不参与序列化过程。 通...
1.GSON解析: import com.google.gson.annotations.SerializedName public class ScheduleMessag...
1. 点击Dialog 外面区域不消失: dialog.setCanceledOnTouchOutside(false); 2. 点击device返回键不消失: dialog...
android scrollview 和 nestedscrollview的区别: 应该说在MD中,用RecyclerView代替了ListView,而NestedScrol...
1. 在布局文件中: name="presenter" type="com.xogrp.planner.user.contract.UserProfileCo...
在Kotlin的使用中, 有时候我们想要创建一个静态对象, 可以使用by lazy companion object { @JvmStatic val topic by ...
1. 调用系统Ripple 效果: android:background="?attr/selectableItemBackgroundBorderless" 2. 调用自定...
1. 回退到指定的Fragment, 可以退出多个fragment, 其中(WeddingVisionFragment.FRAGMENT_TAG) 为那个Fragment的T...
1. Android 手机屏幕顶部有一些有刘海屏, 会导致测量toolbar的高度不准, private fun getNotchHeight(activity: Activ...