adb shell 如何进入到root权限
adb shell之后,使用su无法进入到root权限的问题。在创建模拟器的时候选择Google APIs,Google Play无法获取root权限
还在用 ZXing ? 试试华为统一扫码服务吧!
https://juejin.cn/post/6967890062423883783
模拟器录入指纹
adb -e emu finger touch 1
https://www.freesion.com/article/7112125198/
AndroidStudio 3.6之后如何配置SVN的忽略文件
https://www.jianshu.com/p/f00b8125706b
https://blog.csdn.net/ltym2014/article/details/120065171?spm=1001.2014.3001.5501
Security库对SharedPreferences数据加密
https://juejin.cn/post/6913760234913660936
Android 11 中的软件包可见性
https://my.oschina.net/androiddevs/blog/4779892
将异常一网打尽,爱奇艺开源xCrash是如何做的?
https://mp.weixin.qq.com/s/wKxCT8dkD5feyBm7gOFGMg
https://github.com/iqiyi/xCrash
App极限瘦身姿势: png 打包自动化转换 webp
https://mp.weixin.qq.com/s/X7ss6gLJ3kZbUVpgPn6jAw
可能是目前最全的Android架构师成长路线
https://juejin.cn/post/6844903992288346120
android:contentDescription
用户点击这个控件。android系统会自动使用人声朗读控件上android:contentDescription属性说指向的内容。这样用户就可以知道这个控件是做什么用的。这个属性的主要功能就是为视力有障碍的人增加对控件的解释
Android里存储路径一览
Retrofit 妙用,拒绝重复代码!
https://mp.weixin.qq.com/s/2fekuv3S-uYxvDe4afsWEg
关于Java不支持将函数作为参数传给另一个函数的问题
可以使用Java的替代方案 匿名内部类
接口的形式的,new 接口
kotlin Activity.this
在内部类中。。kt不能再使用Activity.this语法。而是被 this@Activity 替代
android开发 获取父控件的高宽
在子控件里重写 onMeasure方法
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
//获取SingleTouchView所在父布局的中心点
ViewGroup mViewGroup = (ViewGroup) getParent();
if(null != mViewGroup){
mParentWidth = mViewGroup.getWidth();
mParentHeight = mViewGroup.getHeight();
}
}