Text文本溢出 文本出现中文+数字的组合时 Text组件显示不全,可做以下处理 Characters('abc').join('\u{200B}'); Text(Chara...
前言 Android6.0之后的有些权限需要去动态获取,这个过程中呢,我们或许会遇到这么几个方法。 1.ContextCompat.checkSelfPermission 检...
学习原文:https://zhuanlan.zhihu.com/p/149603388 当按钮被点击时,showTestDialog()方法被执行。界面将显示一个小窗口,里面...
例如 申请定位权限: if (Build.VERSION.SDK_INT >=M && !hasPermission(this, Manifest.permission.AC...
转载,原文链接:https://blog.csdn.net/u014537423/article/details/52777978 RecyclerView调用notifyI...
https://github.com/BelooS/ChipsLayoutManager
anim文件夹下创建俩文件如下: 1.anim_shake.xml <?xml version="1.0" encoding="utf-8"?> <translate xml...
转载自https://blog.csdn.net/QasimCyrus/article/details/85218809 此时我们设置ImageView的属性android:...
转载自:https://blog.csdn.net/hdhdgdhdh/article/details/72863564 <!-- 定义弹框Activity的进入、关闭动画 ...
1.Collections.swap(list,a,b);(注意:索引为a的元素与索引为b的元素交换位置,其他元素的索引值不变) list是你需要换位置的List。 a是...