android相关整理

Lottie开源动画库介绍与使用示例

blog.csdn.net/zcychong/article/details/54908022


1、隐藏状态栏的接口:

发送这个广播"com.android.systembar.hide";

2、显示状态栏的接口:

发送这个广播"com.android.systembar.show";

3、删除系统中桌面的命令:

adb root

adb remount

adb shell

rm /system/app/Launcher3/Launcher3.apk

exit

adb push xxxx /system/app/Launcher3/

adb shell sync

adb reboot

注意:xxxx是你们应用的绝对路径

提示:可以将apk文件放在电脑上的任意文件夹下 通过拖动到dos即可生成apk

Glide

关于glide的介绍很多 比如:www.jianshu.com/p/6efb648e2a70

下面是glide使用中不常用的几个方法


android相关整理_第1张图片


android相关整理_第2张图片

一款APP,从设计稿到切图(Android篇)

blog.jobbole.com/95577/

作者:LooperJing

无用log去除的正则表达式

^(?!.*RenderThread)(?!.*ViewRootImpl)

你可能感兴趣的:(android相关整理)